* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background-color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem; /* Mobilde kenar boşluğu için 1rem eklendi */
}

.container {
    background-color: rgba(229, 231, 235, 0.5);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo {
    width: 120px;
    margin: 0 auto 2rem;
    display: block;
    max-width: 100%;
}

.toggle-container {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.toggle-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 6px !important;
    background: none;
    border: 2px solid transparent;
    font-size: 0.875rem;
    cursor: pointer;
    color: #6B7280;
    text-align: center;
    white-space: nowrap;
}

.toggle-btn:first-child {
    border: 2px solid #DB2777;
}

.toggle-btn.active {
    background: linear-gradient(90deg, #DB2777, #A21CAF);
    color: white;
}

.toggle-btn.deactive {
    border: 2px solid #DB2777;
}

.form-group {
    margin-bottom: 1rem;
    width: 100%;
}

.input-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

/* ÖNEMLİ DÜZELTME: Sabit 420px yerine %100 yapıldı */
.form-input {
    width: 100%;
    height: 60px;
    padding: 0 15px;
    background-color: #E5E7EB;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
}

.input-container {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #adb5bd;
    mask-size: cover;
    -webkit-mask-size: cover;
}

.info-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8h.01M12 11v5'/%3E%3Ccircle cx='12' cy='12' r='9' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8h.01M12 11v5'/%3E%3Ccircle cx='12' cy='12' r='9' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
}

.eye-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 12a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 12a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z'/%3E%3C/svg%3E");

    /* Tıklanabilir olması için eklendi */
    cursor: pointer;
    z-index: 10;
}

.business-type {
    margin: 1.5rem 0;
}

.business-type-title {
    font-size: 0.875rem;
    color: #495057;
    margin-bottom: 0.5rem;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
}

.radio-label input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    background: #E5E7EB;
    cursor: pointer;
    margin-right: 8px;
    position: relative;
    outline: none;
    transition: background-color 0.3s, border-color 0.3s;
}

.radio-label input[type="radio"]:checked {
    border-color: #DB2777;
    background: #DB2777;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4B5563;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #495057;
    margin: 1rem 0;
    line-height: 1.4;
}

.checkbox-label input {
    margin-top: 3px;
    flex-shrink: 0;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #2b7a9e;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.login-text {
    text-align: center;
    font-size: 0.875rem;
    color: #495057;
}

.login-link {
    color: #e83e8c;
    text-decoration: none;
    margin-left: 0.25rem;
}

/* MOBİL UYUMLULUK (RESPONSIVE) */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .input-row {
        flex-direction: column; /* Ad Soyad alt alta gelir */
        gap: 1rem;
    }

    .toggle-btn {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}
