/* ==========================================================================
   Kayıt Ol Sayfası Modüler Stilleri (assets/css/pages/register.css)
   ========================================================================== */

/* Kompakt Auth (Giriş / Kayıt) Hero Kartı (Kompakt İnce Görünüm) */
.gd-auth-hero-compact {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0 !important;
}

.gd-auth-hero-compact .gd-page-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gd-auth-hero-compact .gd-page-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.gd-auth-hero-compact .gd-page-subtitle {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* 8px Tam Sayfa Kapsayıcı Standartı */
/* Auth Kapsayıcı Yapıları */
.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    width: 100%;
    box-sizing: border-box;
}

.auth-form-area {
    width: 100%;
}

.auth-form-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

/* ── Trial Promo Banner Styles (Rule 1 & Rule 5 Uyumlu) ────────── */
.gd-trial-promo-card {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 2px dashed #f59e0b;
    color: #78350f;
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08);
}

.gd-trial-promo-icon {
    background: #f59e0b;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(245, 158, 11, 0.2);
}

.gd-trial-promo-title {
    display: block;
    font-size: 15px;
    color: #78350f;
    margin-bottom: 4px;
    font-weight: 800;
}

.gd-trial-promo-text {
    font-weight: 500;
    line-height: 1.5;
    color: #92400e;
}

.auth-form-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* ── Google Sign In Button Styles ────────────────────────── */
.gd-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 44px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.gd-btn-google:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Form Grupları ve Input Wrapper */
.auth-group {
    margin-bottom: 20px;
}

.auth-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.auth-input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.auth-input-wrapper .auth-input {
    width: 100%;
    padding: 12px 16px;
    padding-right: 42px !important;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.auth-input-wrapper .auth-input:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.auth-input-wrapper.has-password-toggle .auth-input {
    padding-right: 75px !important;
}

.auth-input-icons {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    pointer-events: none;
}

.auth-input-icons.select-icons {
    right: 28px;
}

.auth-input-icons .valid-icon {
    color: #10b981;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.6);
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-input-icons .valid-icon.is-valid {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.toggle-password-btn {
    background: none;
    border: none;
    padding: 4px 6px;
    color: #64748b;
    cursor: pointer;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color 0.15s ease, background-color 0.15s ease;
    pointer-events: auto;
}

.toggle-password-btn:hover {
    color: #1e293b;
    background-color: #f1f5f9;
}

/* Buton ve Bağlantılar */
.btn-primary-auth {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #2563eb;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-primary-auth:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.auth-links {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
}

.auth-links a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Sağ Bilgilendirme Alanı */
.auth-info {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.auth-info-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.auth-info-subtitle {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 20px;
}

.auth-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
}

.auth-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

.auth-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.auth-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.5;
}

.auth-list-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
    margin-top: 6px;
    flex-shrink: 0;
}

.auth-footnote {
    font-size: 0.82rem;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

/* Responsive Uyum */
@media (max-width: 991px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 24px;
    }

    .auth-info {
        order: 2;
    }
}

@media (max-width: 480px) {
    .gd-page-body {
        padding: 6px !important;
        gap: 6px !important;
    }

    .auth-wrapper {
        padding: 16px;
        border-radius: 14px;
    }

    .auth-form-title {
        font-size: 1.35rem;
    }

    .auth-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* ── Lead Recovery Zippi UI Uyarısı ────────────────────────────────────── */
.gd-lead-recovery-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1.5px solid #93c5fd;
    border-radius: 16px;
    padding: 20px;
    margin: 18px 0;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gd-lead-recovery-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gd-lead-recovery-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #ffffff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.12);
    flex-shrink: 0;
}

.gd-lead-recovery-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0;
    line-height: 1.25;
}

.gd-lead-recovery-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef3c7;
    color: #b45309;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #fcd34d;
    width: fit-content;
}

.gd-lead-recovery-desc {
    font-size: 0.88rem;
    color: #1e40af;
    line-height: 1.5;
    margin: 0;
}

.gd-lead-recovery-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.gd-lead-recovery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.gd-lead-recovery-btn:hover {
    background: #1d4ed8;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.gd-lead-recovery-subtext {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

/* 🔐 OTP / Doğrulama Kodu Girdisi İyileştirmeleri */
.gd-otp-input,
#code {
    width: 100% !important;
    max-width: 280px !important;
    height: 58px !important;
    margin: 0 auto !important;
    display: block !important;
    text-align: center !important;
    letter-spacing: 10px !important;
    padding-left: 10px !important;
    font-size: 24px !important;
    font-family: 'Outfit', 'Inter', monospace, sans-serif !important;
    font-weight: 800 !important;
    color: #1e3a8a !important;
    background: #f8fafc !important;
    border: 2px solid #cbd5e1 !important;
    border-radius: 12px !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
    caret-color: #2563eb !important;
    box-sizing: border-box !important;
}

.gd-otp-input:hover,
#code:hover {
    border-color: #94a3b8 !important;
}

.gd-otp-input:focus,
.gd-otp-input:focus-visible,
#code:focus,
#code:focus-visible {
    outline: none !important;
    border-color: #2563eb !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15) !important;
}

.gd-otp-input::selection,
#code::selection {
    background: rgba(37, 99, 235, 0.2) !important;
    color: #1e40af !important;
}

.gd-otp-input::placeholder,
#code::placeholder {
    color: #cbd5e1 !important;
    opacity: 0.8 !important;
    letter-spacing: 8px !important;
    font-weight: 600 !important;
}