/* ═══════════════════════════════════════════════════════════════
   DijitalYük — Auth Sayfaları Stilleri
   Referans: dijitalyuk_auth_v1.html
   ═══════════════════════════════════════════════════════════════ */

body {
    background: var(--navy);
    min-height: 100vh;
    display: flex;
}

/* ─── SPLIT LAYOUT ─── */
.auth-wrap {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* ─── SOL PANEL ─── */
.auth-left {
    width: 500px;
    flex-shrink: 0;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    padding: 48px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.auth-left-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.auth-left-bg-circle1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.auth-left-bg-circle2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,107,26,0.06);
}
.auth-left-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: auto;
    position: relative;
    z-index: 1;
}
.auth-brand-text {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.4px;
    color: #fff;
}

.auth-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.auth-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}
.eyebrow-text {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.auth-hero-title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}
.auth-hero-title span { color: var(--orange); }

.auth-hero-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 360px;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 44px;
}
.auth-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.af-check {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.af-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}

.auth-stat-row {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
}
.auth-stat {
    flex: 1;
    padding: 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.auth-stat:last-child { border-right: none; }
.auth-stat-val {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.8px;
}
.auth-stat-lbl {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.auth-left-footer {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
    position: relative;
    z-index: 1;
    margin-top: 32px;
}
.auth-left-footer a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
}
.auth-left-footer a:hover { color: rgba(255,255,255,0.7); }

/* ─── SAĞ PANEL ─── */
.auth-right {
    flex: 1;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    overflow-y: auto;
}

.auth-form-wrap {
    width: 100%;
    max-width: 460px;
}

/* ─── FORM HEADER ─── */
.form-header {
    margin-bottom: 32px;
}
.form-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    line-height: 1.6;
}
.form-subtitle a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}
.form-subtitle a:hover { color: var(--orange); }

/* ─── FORM GROUP ─── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }

.auth-link-sm {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.auth-link-sm:hover { color: var(--navy); }

/* ─── CHECKBOX ─── */
.check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.check-row label {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1.5;
}
.check-row label a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}
.check-row label a:hover { color: var(--orange); }

/* ─── AYIRICI ─── */
.divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
}
.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}
.divider-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ─── BUTONLAR ─── */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.15s;
    margin-top: 8px;
}
.btn-submit:hover { background: var(--navy-light); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit.orange { background: var(--orange); }
.btn-submit.orange:hover { filter: brightness(1.08); }

.btn-social {
    width: 100%;
    padding: 13px 16px;
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.15s;
}
.btn-social:hover { border-color: var(--navy); }

.btn-back {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: color 0.15s;
}
.btn-back:hover { color: var(--navy); }

/* ─── ALT LİNK ─── */
.auth-bottom-link {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
}
.auth-bottom-link a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}
.auth-bottom-link a:hover { color: var(--orange); }

/* ─── STEP INDICATOR ─── */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
}
.step {
    display: flex;
    align-items: center;
    gap: 8px;
}
.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    border: 1.5px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-400);
    flex-shrink: 0;
    transition: all 0.2s;
}
.step-circle.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.step-circle.done {
    background: #F0FDF4;
    border-color: #BBF7D0;
    color: #15803D;
}
.step-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.step-label.active { color: var(--navy); }
.step-line {
    flex: 1;
    height: 1.5px;
    background: var(--gray-200);
    margin: 0 12px;
}
.step-line.done { background: #BBF7D0; }

/* ─── HESAP TİPİ KARTLARI ─── */
.account-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.type-card {
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.15s;
    background: #fff;
}
.type-card:hover { border-color: var(--navy); }
.type-card.active {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(10,37,64,0.08);
}
.type-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 10px;
}
.type-card.active .type-card-icon {
    background: var(--navy);
    color: #fff;
}
.type-card-icon svg { width: 18px; height: 18px; }
.type-card-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.type-card-desc { font-size: 11px; color: var(--gray-500); font-weight: 500; margin-top: 3px; }

/* ─── TELEFON INPUT ─── */
.phone-wrap {
    display: flex;
    gap: 0;
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: all 0.15s;
}
.phone-wrap:focus-within {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(10,37,64,0.07);
}
.phone-prefix {
    padding: 13px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    background: var(--gray-100);
    border-right: 1.5px solid var(--gray-200);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.phone-field {
    flex: 1;
    padding: 13px 14px;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    background: transparent;
}
.phone-field::placeholder { color: var(--gray-400); }

/* ─── ŞİFRE GÜÇ GÖSTERGESİ ─── */
.pw-strength { margin-top: 8px; }
.pw-bars { display: flex; gap: 4px; margin-bottom: 4px; }
.pw-bar {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: var(--gray-200);
    transition: background 0.2s;
}
.pw-bar.weak   { background: #DC2626; }
.pw-bar.medium { background: #F59E0B; }
.pw-bar.strong { background: #22C55E; }
.pw-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* ─── OTP INPUT ─── */
.otp-wrap {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 24px 0;
}
.otp-input {
    width: 52px;
    height: 58px;
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    outline: none;
    font-family: var(--font);
    transition: all 0.15s;
}
.otp-input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(10,37,64,0.07);
}
.otp-input.filled {
    border-color: var(--navy);
    background: var(--gray-100);
}

/* ─── KURUMSAL EK ALANLAR ─── */
.corporate-fields {
    background: var(--gray-100);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
    border: 1px solid var(--gray-200);
}
.corporate-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ─── BAŞARI KARTI ─── */
.success-card { text-align: center; padding: 32px 0; }
.success-icon {
    width: 72px;
    height: 72px;
    background: #F0FDF4;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid #BBF7D0;
}
.success-icon svg {
    width: 32px;
    height: 32px;
    stroke: #15803D;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.success-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}
.success-text {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    line-height: 1.65;
    max-width: 340px;
    margin: 0 auto 28px;
}

/* ─── RESPONSİVE ─── */
@media (max-width: 960px) {
    .auth-left { display: none; }
    .auth-right { padding: 32px 20px; }
}

@media (max-width: 480px) {
    .auth-form-wrap { max-width: 100%; }
    .account-type { grid-template-columns: 1fr; }
    .otp-input { width: 44px; height: 50px; font-size: 18px; }
}
