/* ============================================================
   Acenta Center — giriş / hesap ekranları (halka açık yüzey)
   Split-screen: solda koyu mürekkep zemin üzerinde marka anlatımı ve
   ürün önizleme maketi, sağda sade beyaz form kartı.
   Bu dosya Login, Register, ForgotPassword, ResendConfirmation ve
   ResetPassword tarafından paylaşılır; sınıf adları ortaktır.
   ============================================================ */

:root {
    --auth-indigo: #6366f1;
    --auth-indigo-d: #4f46e5;
    --auth-violet: #7c3aed;
    --auth-grad: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --auth-ink: #0f1226;
    --auth-ink-2: #171a36;
    --auth-text: #111827;
    --auth-muted: #6b7280;
    --auth-faint: #9ca3af;
    --auth-border: #e5e7ef;
    --auth-border-strong: #d3d6e3;
    --auth-bg: #f6f7fb;
    --auth-surface: #ffffff;
    --auth-danger: #dc2626;
    --auth-danger-bg: #fef2f2;
    --auth-danger-border: #fecaca;
    --auth-radius: 14px;
    --auth-radius-lg: 22px;
    --auth-ring: 0 0 0 4px rgba(99, 102, 241, .16);
    --auth-font: 'Montserrat', system-ui, -apple-system, "Segoe UI", sans-serif;
}

html, body {
    margin: 0;
    background: var(--auth-bg);
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    background: var(--auth-bg);
    font-family: var(--auth-font);
    color: var(--auth-text);
    -webkit-font-smoothing: antialiased;
}

/* ---------------- SOL: Marka paneli ---------------- */
.auth-aside {
    position: relative;
    overflow: hidden;
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
    background:
        radial-gradient(70% 55% at 85% 10%, rgba(124, 58, 237, .55) 0%, transparent 60%),
        radial-gradient(60% 50% at 10% 95%, rgba(79, 70, 229, .50) 0%, transparent 60%),
        radial-gradient(40% 40% at 60% 60%, rgba(99, 102, 241, .22) 0%, transparent 70%),
        linear-gradient(160deg, var(--auth-ink) 0%, var(--auth-ink-2) 100%);
}

/* İnce ızgara dokusu */
.auth-aside::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 100%);
    mask-image: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 100%);
}

/* Yumuşak halka */
.auth-aside::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    bottom: -220px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: inset 0 0 0 60px rgba(255, 255, 255, .025);
    pointer-events: none;
}

.auth-aside > * {
    position: relative;
    z-index: 1;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .1px;
    color: #fff;
    text-decoration: none;
}

.auth-brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 17px;
    color: #fff;
    background: var(--auth-grad);
    box-shadow: 0 10px 24px -10px rgba(124, 58, 237, .8), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.auth-hero {
    max-width: 520px;
}

.auth-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 20px;
}

.auth-hero__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a5b4fc;
    box-shadow: 0 0 0 4px rgba(165, 180, 252, .18);
}

.auth-hero__title {
    font-size: clamp(28px, 2.9vw, 40px);
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    color: #fff;
}

.auth-hero__title em {
    font-style: normal;
    background: linear-gradient(90deg, #c7d2fe, #e9d5ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.auth-hero__sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .70);
    margin: 0 0 30px;
    max-width: 460px;
}

/* Ürün önizleme maketi */
.auth-preview {
    position: relative;
    max-width: 480px;
    margin: 0 0 30px;
}

.auth-preview__window {
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.auth-preview__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.auth-preview__bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
}

.auth-preview__url {
    margin-left: 10px;
    flex: 1;
    height: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    font-size: 10.5px;
    line-height: 18px;
    padding: 0 10px;
    color: rgba(255, 255, 255, .55);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.auth-preview__body {
    padding: 14px;
    display: grid;
    gap: 12px;
}

.auth-preview__hero {
    height: 92px;
    border-radius: 10px;
    background:
        radial-gradient(60% 80% at 80% 30%, rgba(255, 255, 255, .25), transparent 60%),
        linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    position: relative;
    overflow: hidden;
}

.auth-preview__hero::before,
.auth-preview__hero::after {
    content: "";
    position: absolute;
    left: 16px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .85);
}

.auth-preview__hero::before {
    top: 30px;
    width: 46%;
}

.auth-preview__hero::after {
    top: 48px;
    width: 28%;
    height: 6px;
    background: rgba(255, 255, 255, .55);
}

.auth-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.auth-preview__card {
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 8px;
    display: grid;
    gap: 6px;
}

.auth-preview__card i {
    display: block;
    height: 34px;
    border-radius: 7px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .06));
}

.auth-preview__card b,
.auth-preview__card s {
    display: block;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .55);
    text-decoration: none;
}

.auth-preview__card s {
    width: 60%;
    background: rgba(255, 255, 255, .25);
}

/* Yüzen rozetler */
.auth-preview__chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--auth-text);
    background: #fff;
    box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .6);
    white-space: nowrap;
}

.auth-preview__chip i {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 11px;
    color: #fff;
    background: var(--auth-grad);
}

.auth-preview__chip--live {
    right: -18px;
    top: 34px;
}

.auth-preview__chip--live i {
    background: #10b981;
}

.auth-preview__chip--lang {
    left: -22px;
    bottom: 22px;
}

.auth-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.auth-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .86);
}

.auth-features i {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 11px;
    flex-shrink: 0;
    color: #c7d2fe;
    background: rgba(165, 180, 252, .14);
    border: 1px solid rgba(165, 180, 252, .22);
}

.auth-aside__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 18px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .55);
}

.auth-aside__foot a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.auth-aside__foot a:hover {
    color: #fff;
}

.auth-aside__links {
    display: flex;
    gap: 16px;
}

/* ---------------- SAĞ: Form alanı ---------------- */
.auth-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 40px 24px;
    background:
        radial-gradient(60% 40% at 50% 0%, rgba(99, 102, 241, .07) 0%, transparent 70%),
        var(--auth-bg);
}

/* Mobilde kartın üstünde görünen marka satırı */
.auth-main__brand {
    display: none;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--auth-text);
    text-decoration: none;
}

.auth-main__brand .auth-brand__mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 15px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--auth-surface);
    border: 1px solid var(--auth-border);
    border-radius: var(--auth-radius-lg);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, .04),
        0 24px 60px -30px rgba(15, 23, 42, .25);
    padding: 40px 40px 34px;
    animation: auth-rise .55s cubic-bezier(.2, .7, .2, 1) both;
}

@keyframes auth-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .auth-card {
        animation: none;
    }
}

.auth-card__head {
    text-align: left;
    margin-bottom: 26px;
}

.auth-card__logo {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    margin: 0 0 18px;
    display: grid;
    place-items: center;
    color: var(--auth-indigo-d);
    font-size: 18px;
    background: rgba(99, 102, 241, .10);
    border: 1px solid rgba(99, 102, 241, .18);
}

.auth-card__title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.015em;
    margin: 0 0 6px;
    color: var(--auth-text);
}

.auth-card__sub {
    font-size: 14px;
    line-height: 1.6;
    color: var(--auth-muted);
    margin: 0;
}

/* Alanlar */
.auth-field {
    margin-bottom: 16px;
}

.auth-field__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}

.auth-input {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input > i {
    position: absolute;
    left: 15px;
    color: var(--auth-faint);
    font-size: 14px;
    pointer-events: none;
    transition: color .2s ease;
}

.auth-input .form-control {
    width: 100%;
    height: 50px;
    border: 1px solid var(--auth-border-strong);
    border-radius: var(--auth-radius);
    padding: 0 16px 0 42px;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--auth-text);
    background: var(--auth-surface);
    box-shadow: 0 1px 2px rgba(15, 23, 42, .03);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.auth-input .form-control::placeholder {
    color: #b0b6c6;
}

.auth-input .form-control:hover {
    border-color: #bfc4d6;
}

.auth-input .form-control:focus {
    outline: 0;
    border-color: var(--auth-indigo);
    box-shadow: var(--auth-ring);
}

.auth-input:focus-within > i {
    color: var(--auth-indigo);
}

/* Bootstrap'ın was-validated / is-invalid arka plan ikonu kullanılmaz */
.auth-input .form-control:invalid,
.auth-input .form-control.is-invalid,
.was-validated .auth-input .form-control:invalid {
    background-image: none;
    padding-right: 16px;
}

.was-validated .auth-input .form-control:invalid,
.auth-input .form-control.is-invalid,
.auth-input .form-control.input-validation-error {
    border-color: var(--auth-danger);
}

.was-validated .auth-input .form-control:invalid:focus,
.auth-input .form-control.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .14);
}

.was-validated .auth-input .form-control:valid,
.auth-input .form-control.is-valid {
    border-color: var(--auth-border-strong);
    background-image: none;
}

/* Şifre göster/gizle */
.auth-input--pass .form-control,
.was-validated .auth-input--pass .form-control:invalid {
    padding-right: 48px;
}

.auth-pass-toggle {
    position: absolute;
    right: 8px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    border-radius: 9px;
    color: var(--auth-faint);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: color .2s ease, background .2s ease;
}

.auth-pass-toggle:hover {
    color: var(--auth-indigo);
    background: rgba(99, 102, 241, .08);
}

/* İki alan yan yana (parola / parola tekrar) */
.auth-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Onay kutuları */
.auth-terms,
.auth-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

.auth-check {
    align-items: center;
}

.auth-terms {
    margin: 4px 0 20px;
}

.auth-terms input,
.auth-check input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    border: 1.5px solid var(--auth-border-strong);
    border-radius: 6px;
    background: var(--auth-surface);
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.auth-check input {
    margin: 0;
}

.auth-terms input::before,
.auth-check input::before {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px) scale(0);
    transition: transform .15s ease;
}

.auth-terms input:checked,
.auth-check input:checked {
    background: var(--auth-indigo-d);
    border-color: var(--auth-indigo-d);
}

.auth-terms input:checked::before,
.auth-check input:checked::before {
    transform: rotate(-45deg) translate(1px, -1px) scale(1);
}

.auth-terms input:focus-visible,
.auth-check input:focus-visible {
    outline: 0;
    box-shadow: var(--auth-ring);
}

.auth-terms a {
    color: var(--auth-indigo-d);
    font-weight: 600;
    text-decoration: none;
}

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

/* Satır: beni hatırla + parolamı unuttum */
.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 2px 0 22px;
}

.auth-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--auth-indigo-d);
    text-decoration: none;
    transition: color .2s ease;
}

.auth-link:hover {
    color: var(--auth-violet);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Ana buton */
.auth-submit {
    position: relative;
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: var(--auth-radius);
    color: #fff;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: .1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--auth-ink);
    box-shadow: 0 1px 2px rgba(15, 23, 42, .2), 0 14px 28px -16px rgba(15, 18, 38, .8);
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

.auth-submit i {
    font-size: 13px;
    transition: transform .2s ease;
}

.auth-submit:hover {
    background: var(--auth-indigo-d);
    box-shadow: 0 1px 2px rgba(15, 23, 42, .2), 0 18px 34px -16px rgba(79, 70, 229, .8);
    transform: translateY(-1px);
}

.auth-submit:hover i {
    transform: translateX(3px);
}

.auth-submit:active {
    transform: translateY(0);
}

.auth-submit:focus-visible {
    outline: 0;
    box-shadow: var(--auth-ring);
}

.auth-submit.is-busy {
    pointer-events: none;
    opacity: .85;
}

.auth-submit.is-busy i {
    animation: auth-spin .8s linear infinite;
}

@keyframes auth-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Alt bilgi */
.auth-foot {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--auth-border);
    font-size: 13.5px;
    color: var(--auth-muted);
}

.auth-foot .auth-link {
    font-weight: 700;
}

/* Kart altı: güvenlik notu + yasal bağlantılar */
.auth-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 18px;
    font-size: 12px;
    color: var(--auth-faint);
}

.auth-legal a {
    color: var(--auth-muted);
    text-decoration: none;
}

.auth-legal a:hover {
    color: var(--auth-text);
}

.auth-legal__secure {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.auth-legal__secure i {
    color: #10b981;
}

/* Ayraç (or) */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0;
    color: var(--auth-faint);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--auth-border);
}

/* Validasyon mesajları */
.auth-field .text-danger,
.auth-field .field-validation-error {
    display: block;
    font-size: 12.5px;
    margin-top: 6px;
    color: var(--auth-danger);
}

.auth-field .field-validation-valid {
    display: none;
}

.auth-alert {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: var(--auth-danger-bg);
    border: 1px solid var(--auth-danger-border);
    color: #b91c1c;
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* Hata yokken validation-summary boş kutu olarak görünmesin */
.auth-alert.validation-summary-valid {
    display: none;
}

.auth-alert ul {
    margin: 0;
    padding-left: 18px;
}

.auth-alert li {
    list-style: disc;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1199.98px) {
    .auth-aside {
        padding: 40px 40px;
    }

    .auth-preview__chip--live {
        right: 12px;
    }

    .auth-preview__chip--lang {
        left: 12px;
    }
}

@media (max-width: 991.98px) {
    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-aside {
        display: none;
    }

    .auth-main {
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 48px;
        background:
            radial-gradient(90% 50% at 50% 0%, rgba(99, 102, 241, .14) 0%, transparent 65%),
            var(--auth-bg);
    }

    .auth-main__brand {
        display: inline-flex;
    }
}

@media (max-width: 479.98px) {
    .auth-card {
        padding: 30px 22px 26px;
        border-radius: 18px;
    }

    .auth-main {
        padding: 32px 16px 24px;
    }

    .auth-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ---------------- Kayit: secili paket karti ---------------- */
.auth-plan {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin: -6px 0 22px;
    border-radius: var(--auth-radius);
    border: 1px solid rgba(99, 102, 241, .22);
    background: linear-gradient(135deg, rgba(99, 102, 241, .08), rgba(124, 58, 237, .05));
}

.auth-plan__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 16px;
    background: var(--auth-grad);
    box-shadow: 0 10px 20px -10px rgba(124, 58, 237, .7);
}

.auth-plan__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.auth-plan__label {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--auth-indigo-d);
}

.auth-plan__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--auth-text);
    line-height: 1.2;
}

.auth-plan__desc {
    font-size: 12.5px;
    color: var(--auth-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.auth-plan__side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
    text-align: right;
}

.auth-plan__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--auth-text);
    letter-spacing: -.01em;
    line-height: 1;
}

.auth-plan__price small {
    font-size: 12px;
    font-weight: 500;
    color: var(--auth-muted);
    margin-left: 2px;
}

.auth-plan__trial {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: #047857;
    background: rgba(16, 185, 129, .12);
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
}

.auth-plan__change {
    font-size: 12px;
    font-weight: 600;
    color: var(--auth-indigo-d);
    text-decoration: none;
}

.auth-plan__change:hover {
    text-decoration: underline;
}

@media (max-width: 479.98px) {
    .auth-plan { flex-wrap: wrap; }
    .auth-plan__side { align-items: flex-start; text-align: left; width: 100%; padding-left: 56px; }
}

/* ---------------- Basvuru alindi ---------------- */
.auth-done {
    text-align: left;
    margin-bottom: 22px;
}

.auth-done__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin: 0 0 18px;
    display: grid;
    place-items: center;
    font-size: 24px;
    color: #047857;
    background: rgba(16, 185, 129, .12);
    border: 1px solid rgba(16, 185, 129, .25);
}

.auth-steps {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.auth-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--auth-border);
    font-size: 13.5px;
    color: var(--auth-muted);
    background: var(--auth-surface);
}

.auth-steps li strong {
    color: var(--auth-text);
    font-weight: 600;
}

.auth-steps__num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--auth-muted);
    background: var(--auth-bg);
    border: 1px solid var(--auth-border-strong);
}

.auth-steps li.is-done .auth-steps__num {
    color: #fff;
    background: #10b981;
    border-color: #10b981;
}

.auth-steps li.is-current {
    border-color: rgba(99, 102, 241, .35);
    background: rgba(99, 102, 241, .06);
}

.auth-steps li.is-current .auth-steps__num {
    color: #fff;
    background: var(--auth-indigo-d);
    border-color: var(--auth-indigo-d);
}

a.auth-submit {
    text-decoration: none;
}

.auth-alert--success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857;
}

.auth-alert > i {
    margin-top: 2px;
    flex-shrink: 0;
}
