:root {
    --public-font-body: "Nu Sans Text", "Nu Sans Display", "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
    --public-font-display: "Nu Sans Display", "Nu Sans Text", "Aptos", "Segoe UI Variable Display", "Segoe UI", sans-serif;
    --auth-surface: rgba(255, 255, 255, 0.88);
    --auth-surface-solid: #ffffff;
    --auth-surface-soft: #f6f9fc;
    --auth-border: rgba(15, 23, 42, 0.08);
    --auth-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
    --auth-shadow-soft: 0 18px 36px rgba(15, 23, 42, 0.08);
    --auth-text: #0f172a;
    --auth-muted: #5b6b82;
    --auth-muted-soft: #7b8ba4;
    --auth-accent: #1d4ed8;
    --auth-accent-strong: #0f62fe;
    --auth-accent-soft: #e8f0ff;
}

body.login-shell {
    font-family: var(--public-font-body);
    color: var(--auth-text);
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(47, 141, 255, 0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.08), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #edf3f9 100%);
}

.finance-page-shell--login {
    position: relative;
    min-height: 100vh;
    align-items: center;
    padding: 32px 0;
    overflow-x: hidden;
}

.finance-page-shell--login::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 36%);
    pointer-events: none;
}

.login-stage,
.auth-stage {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

.login-stage {
    width: min(1120px, calc(100% - 32px));
    grid-template-columns: minmax(360px, 470px) minmax(380px, 1fr);
}

.auth-stage {
    width: min(1180px, calc(100% - 32px));
    grid-template-columns: minmax(360px, 520px) minmax(320px, 1fr);
}

.login-card,
.login-showcase,
.auth-card,
.auth-aside {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--auth-border);
    box-shadow: var(--auth-shadow);
    backdrop-filter: blur(18px);
}

.login-card,
.auth-card {
    padding: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 253, 0.9));
}

.login-showcase,
.auth-aside {
    padding: 32px;
    display: grid;
    align-content: start;
    gap: 20px;
    background: linear-gradient(180deg, var(--auth-surface), rgba(245, 248, 252, 0.9));
}

.login-showcase::after,
.auth-aside::after {
    content: "";
    position: absolute;
    inset: auto -60px -60px auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.08), transparent 70%);
    pointer-events: none;
}

.login-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 0;
}

.login-brand__badge {
    display: none;
}

.login-brand__logo {
    width: min(100%, 190px);
    max-width: 100%;
    height: auto;
    max-height: 46px;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: none;
}

.login-brand strong,
.login-brand small {
    display: none;
}

.login-copy {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.login-copy__eyebrow,
.login-showcase__eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--auth-accent-soft);
    color: var(--auth-accent);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.login-copy h1,
.login-showcase h2,
.auth-plan-card h2,
.auth-plan-header h2 {
    margin: 0;
    font-family: var(--public-font-display);
    font-weight: 700;
    color: var(--auth-text);
    letter-spacing: -0.04em;
}

.login-copy h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
}

.login-showcase h2 {
    font-size: clamp(1.55rem, 2.2vw, 2.2rem);
    line-height: 1.08;
    max-width: 18ch;
}

.login-copy p,
.login-showcase p,
.login-feature-item span,
.auth-plan-header p,
.auth-plan-card p,
.auth-plan-option p,
.auth-plan-option__list,
.auth-plan-inline span {
    margin: 0;
    color: var(--auth-muted);
    line-height: 1.65;
}

.login-form {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.login-field {
    display: grid;
    gap: 8px;
}

.login-field label {
    color: var(--auth-text);
    font-size: 0.92rem;
    font-weight: 600;
}

.login-field .form-control {
    min-height: 54px !important;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #f8fbff;
    color: var(--auth-text);
    box-shadow: none;
}

    .login-field .form-control::placeholder {
        color: #777!important; 
        opacity: 1!important; 
    }

.login-field .form-control:focus {
    border-color: rgba(29, 78, 216, 0.42);
    background: var(--auth-surface-solid);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.login-field .form-control[type="date"] {
    line-height: 1.2;
    padding-right: 44px;
}

.login-field .form-control[type="date"]::-webkit-datetime-edit {
    display: inline-flex;
    align-items: center;
    min-height: 100%;
    padding: 0;
}

.login-field .form-control[type="date"]::-webkit-date-and-time-value {
    min-height: 100%;
    text-align: left;
}

.btnLogin {
    width: 100%;
    min-height: 54px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 58%, #2ea3ff 100%);
    box-shadow: 0 18px 30px rgba(29, 78, 216, 0.18);
    color: #ffffff;
    font-family: var(--public-font-display);
    font-size: 1rem;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.btnLogin:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 36px rgba(29, 78, 216, 0.22);
}

.btnLogin:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 14px 24px rgba(29, 78, 216, 0.14);
}

.login-form__context,
.login-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.login-form__context {
    margin-top: 2px;
}

.login-chip,
.login-card__footer span {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--auth-border);
    box-shadow: var(--auth-shadow-soft);
    color: var(--auth-muted);
    font-size: 0.84rem;
    font-weight: 600;
}

.login-card__footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--auth-border);
}

.login-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.login-trust-strip span {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--auth-border);
    box-shadow: var(--auth-shadow-soft);
    color: var(--auth-muted);
    font-size: 0.84rem;
    font-weight: 600;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 4px;
}

.auth-links a {
    color: var(--auth-accent);
    font-weight: 600;
    text-decoration: none;
}

.auth-links a:hover {
    color: #0f172a;
}

.login-showcase__intro,
.auth-plan-header {
    display: grid;
    gap: 12px;
}

.login-showcase__list,
.login-plan-links,
.auth-plan-stack {
    display: grid;
    gap: 12px;
}

.login-showcase__hud {
    display: grid;
    gap: 12px;
}

.login-showcase__hud h2 {
    margin: 0;
    font-family: var(--public-font-display);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.08;
    color: var(--auth-text);
    letter-spacing: -0.03em;
}

.login-visual {
    display: none;
}

.login-feature-item,
.auth-plan-card,
.auth-plan-option,
.auth-plan-inline {
    border-radius: 22px;
    border: 1px solid var(--auth-border);
    background: var(--auth-surface-soft);
}

.login-feature-item {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
}

.login-feature-item strong,
.auth-plan-card strong,
.auth-plan-option__head h3,
.auth-plan-inline strong {
    font-family: var(--public-font-display);
    color: var(--auth-text);
}

.login-feature-item strong {
    font-size: 1rem;
}

.login-plan-panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, #0f172a 0%, #16243b 100%);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.login-plan-panel .login-showcase__eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: #bfdbfe;
}

.login-plan-panel__header {
    display: grid;
    gap: 8px;
}

.login-plan-panel__header strong {
    font-family: var(--public-font-display);
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.login-plan-panel p {
    color: rgba(226, 232, 240, 0.84);
}

.login-plan-panel__pricing {
    display: grid;
    gap: 4px;
    color: #e2e8f0;
    font-weight: 600;
}

.login-plan-panel__pricing small {
    color: rgba(191, 219, 254, 0.84);
    font-size: 0.85rem;
}

.login-plan-links__label {
    color: rgba(191, 219, 254, 0.84);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.login-plan-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.login-plan-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.login-plan-link strong {
    font-size: 0.98rem;
}

.login-plan-link span {
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.85rem;
    text-align: right;
}

.login-preview {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 220px;
    border-radius: 24px;
    border: 1px solid var(--auth-border);
    background: #0f172a;
    box-shadow: var(--auth-shadow-soft);
}

.login-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.auth-plan-card {
    display: grid;
    gap: 0.85rem;
    padding: 20px;
}

.auth-plan-card--selected {
    margin-bottom: 14px;
}

.auth-plan-card h2,
.auth-plan-header h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.45rem);
    line-height: 1.08;
}

.auth-plan-card strong,
.auth-plan-option__price {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.auth-plan-card small {
    color: var(--auth-muted);
    font-size: 0.9rem;
}

.auth-plan-stack--compact {
    gap: 10px;
}

.auth-plan-option {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.auth-plan-option__head span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--auth-accent);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.auth-plan-option__head h3 {
    margin: 10px 0 0;
    font-size: 1.2rem;
}

.auth-plan-option__list {
    margin: 0;
    padding-left: 18px;
}

.auth-plan-option__link,
.auth-plan-inline {
    text-decoration: none;
}

.auth-plan-option__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(29, 78, 216, 0.14);
    background: rgba(29, 78, 216, 0.06);
    color: var(--auth-accent);
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.auth-plan-option__link:hover,
.auth-plan-inline:hover {
    transform: translateY(-1px);
}

.login-showcase .auth-plan-option {
    gap: 10px;
}

.login-showcase .auth-plan-option p,
.login-showcase .auth-plan-option__list {
    display: none;
}

.login-showcase .auth-plan-option__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.login-showcase .auth-plan-option__head h3 {
    margin: 0;
    font-size: 1rem;
}

.login-showcase .auth-plan-option__price {
    font-size: 0.95rem;
}

.login-showcase .auth-plan-option__link {
    width: 100%;
}

.auth-plan-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    color: var(--auth-text);
}

.auth-plan-inline.is-featured {
    border-color: rgba(29, 78, 216, 0.22);
    background: rgba(29, 78, 216, 0.08);
}

.auth-reset-panel {
    display: none;
    gap: 16px;
}

.auth-reset-panel.is-visible {
    display: grid;
}

.recovery-step {
    display: grid;
    gap: 18px;
}

.recovery-note {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(88, 113, 148, 0.3);
    background: rgba(11, 20, 32, 0.62);
    color: var(--auth-muted);
    font-size: 0.92rem;
}

.recovery-note strong {
    color: var(--auth-text);
}

.text-danger {
    min-height: 1.2rem;
    color: #dc2626 !important;
    font-size: 0.9rem;
}

@media (max-width: 1100px) {
    .login-stage,
    .auth-stage {
        width: min(860px, calc(100% - 24px));
        grid-template-columns: 1fr;
    }

    .login-showcase h2 {
        max-width: 100%;
    }
}

@media (max-width: 820px) {
    .finance-page-shell--login {
        padding: 18px 0;
    }

    .login-stage,
    .auth-stage {
        width: min(100% - 18px, 100%);
        gap: 18px;
    }

    .login-card,
    .login-showcase,
    .auth-card,
    .auth-aside {
        border-radius: 24px;
        padding: 24px;
    }

    .login-copy h1,
    .auth-plan-card h2,
    .auth-plan-header h2 {
        font-size: clamp(1.8rem, 7vw, 2.3rem);
    }

    .login-plan-link,
    .auth-plan-inline {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-plan-link span {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .login-preview {
        display: none;
    }

    .auth-links {
        flex-direction: column;
        align-items: flex-start;
    }
}

body.login-shell {
    --auth-text: #e7eefb;
    --auth-muted: #9bb0c8;
    --auth-muted-soft: #6f8299;
    --auth-accent: #33e0be;
    --auth-accent-strong: #2ea3ff;
    --auth-accent-soft: rgba(46, 163, 255, 0.14);
    background:
        radial-gradient(circle at top left, rgba(46, 163, 255, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(51, 224, 190, 0.14), transparent 24%),
        linear-gradient(180deg, #07111c 0%, #0b1623 48%, #0d1a2a 100%);
}

body.login-shell .finance-page-shell--login {
    min-height: 100vh;
    padding: 24px 16px;
}

body.login-shell .finance-page-shell--login::before {
    background:
        radial-gradient(circle at center top, rgba(46, 163, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(10, 18, 29, 0.12), transparent 42%);
}

body.login-shell .login-stage {
    width: min(420px, calc(100% - 24px));
    min-height: calc(100vh - 48px);
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
}

body.login-shell .login-showcase {
    display: none !important;
}

body.login-shell .login-card--compact {
    padding: 34px 30px;
    border-radius: 30px;
    border: 1px solid rgba(88, 113, 148, 0.28);
    background:
        linear-gradient(180deg, rgba(13, 24, 39, 0.96), rgba(10, 19, 31, 0.96));
    box-shadow:
        0 28px 64px rgba(3, 8, 15, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(18px);
}

body.login-shell .login-brand {
    gap: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

body.login-shell .login-brand__badge {
    display: none;
}

body.login-shell .login-brand strong,
body.login-shell .login-copy h1,
body.login-shell .login-field label {
    color: var(--auth-text);
}

body.login-shell .login-brand small {
    color: var(--auth-muted-soft);
}

body.login-shell .login-brand__logo {
    width: min(100%, clamp(156px, 34vw, 182px));
    max-width: 100%;
    height: auto;
    max-height: clamp(36px, 7vw, 44px);
}

body.login-shell .login-copy {
    margin-top: 24px;
    gap: 10px;
}

body.login-shell .login-copy__eyebrow {
    background: rgba(51, 224, 190, 0.12);
    color: #7cebd6;
}

body.login-shell .login-copy h1 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.02;
}

body.login-shell .login-copy p {
    color: var(--auth-muted);
    max-width: 31ch;
}

body.login-shell .login-form {
    margin-top: 24px;
    gap: 14px;
}

body.login-shell .login-field .form-control {
    min-height: 56px !important;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(88, 113, 148, 0.3);
    background: rgba(11, 20, 32, 0.92);
    color: var(--auth-text);
}

body.login-shell .login-field .form-control::placeholder {
    color: rgba(123, 138, 159, 0.88);
    opacity: 1;
}

body.login-shell .login-field .form-control:focus {
    border-color: rgba(46, 163, 255, 0.44);
    background: rgba(13, 24, 39, 1);
    box-shadow: 0 0 0 4px rgba(46, 163, 255, 0.12);
}

body.login-shell .btnLogin {
    min-height: 56px !important;
    border-radius: 16px;
    background: linear-gradient(135deg, #113256 0%, #1f74c7 56%, #33e0be 100%);
    box-shadow: 0 18px 28px rgba(12, 29, 48, 0.34);
}

body.login-shell .btnLogin:hover {
    box-shadow: 0 22px 34px rgba(12, 29, 48, 0.4);
}

body.login-shell .auth-links {
    margin-top: 2px;
    justify-content: space-between;
    gap: 12px;
}

body.login-shell .auth-links a {
    color: #7fd6ff;
}

body.login-shell .auth-links a:hover {
    color: #b6f1e6;
}

body.login-shell #erroLogin {
    color: #ff8f8f !important;
}

.login-feedback-actions {
    margin-top: 0.65rem;
}

.login-feedback-actions .btnLogin {
    width: 100%;
}

.btnLogin.btnLogin--secondary {
    background: transparent;
    color: #e8f1ff;
    border: 1px solid rgba(136, 194, 255, 0.4);
    box-shadow: none;
}

.btnLogin.btnLogin--secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

@media (max-width: 640px) {
    body.login-shell .finance-page-shell--login {
        padding: 16px 12px;
    }

    body.login-shell .login-stage {
        width: min(100%, calc(100% - 8px));
        min-height: calc(100vh - 32px);
    }

    body.login-shell .login-card--compact {
        padding: 26px 22px;
        border-radius: 24px;
    }

    body.login-shell .auth-links {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 12px;
    }

    body.login-shell .auth-links a {
        width: auto;
        flex: 0 1 auto;
    }

    body.login-shell .auth-links a:last-child {
        text-align: right;
        margin-left: auto;
    }
}

body.login-shell .login-stage {
    width: min(453px, calc(100% - 24px));
}

body.login-shell .login-card--compact {
    max-width: 453px;
    width: min(433px, 100%);
    margin: 0 auto;
}

body.login-shell .login-brand--center {
    width: 100%;
    justify-content: center;
    margin: 0 auto;
}

body.login-shell .login-brand strong,
body.login-shell .login-brand small,
body.login-shell .login-copy__eyebrow,
body.login-shell .login-copy--minimal p {
    display: none !important;
}

body.login-shell .login-copy {
    margin-top: 18px;
    gap: 6px;
}

body.login-shell .login-copy--minimal {
    text-align: center;
    justify-items: center;
}

body.login-shell .login-copy--minimal h1 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2rem);
    line-height: 1.04;
}

body.login-shell .login-form {
    margin-top: 22px;
}

body.login-shell .login-field label {
    font-size: 0.84rem;
}

body.login-shell .login-field .form-control {
    min-height: 52px !important;
    font-size: 0.94rem;
}

body.login-shell .login-remember-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: -2px;
}

body.login-shell .login-remember-label {
    margin: 0;
    color: var(--auth-muted);
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
}

body.login-shell .login-remember-toggle {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

body.login-shell .login-remember-toggle input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

body.login-shell .login-remember-toggle__track {
    width: 46px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border-radius: 999px;
    background: rgba(72, 89, 114, 0.68);
    border: 1px solid rgba(111, 130, 153, 0.36);
    transition: background 180ms ease, border-color 180ms ease;
}

body.login-shell .login-remember-toggle__thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f6fbff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
    transition: transform 180ms ease, background 180ms ease;
}

body.login-shell .login-remember-toggle input:checked + .login-remember-toggle__track {
    background: linear-gradient(135deg, rgba(31, 116, 199, 0.95), rgba(51, 224, 190, 0.92));
    border-color: rgba(125, 237, 221, 0.42);
}

body.login-shell .login-remember-toggle input:checked + .login-remember-toggle__track .login-remember-toggle__thumb {
    transform: translateX(20px);
    background: #ffffff;
}

.auth-stage--journey {
    width: min(980px, calc(100% - 32px));
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    justify-content: center;
}

.auth-card--journey,
.auth-aside--journey {
    display: grid;
    align-content: start;
    gap: 22px;
}

.auth-card--journey {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.login-brand--journey {
    justify-content: flex-start;
}

.auth-back-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(88, 113, 148, 0.22);
    background: rgba(11, 20, 32, 0.72);
    color: #d7e3f8;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.auth-back-link:hover {
    border-color: rgba(51, 224, 190, 0.28);
    background: rgba(17, 36, 58, 0.94);
    color: #ffffff;
}

.login-copy--journey {
    margin-top: 0;
}

.login-copy--journey h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.02;
}

.login-copy--journey p {
    max-width: 58ch;
}

.auth-journey-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.auth-journey-step,
.auth-form-section,
.auth-journey-summary__block {
    border-radius: 22px;
    border: 1px solid var(--auth-border);
    background: var(--auth-surface-soft);
}

.auth-journey-step {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
}

.auth-journey-step span,
.auth-section-head__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--auth-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.auth-journey-step strong,
.auth-section-head h2,
.auth-plan-choice__copy strong,
.auth-payment-choice strong,
.auth-plan-inline--static strong {
    font-family: var(--public-font-display);
    color: var(--auth-text);
}

.auth-journey-step small,
.auth-section-head p,
.auth-plan-choice__copy small,
.auth-payment-choice small,
.auth-inline-note,
.auth-journey-summary__text {
    color: var(--auth-muted);
    line-height: 1.6;
}

.auth-journey-step.is-active {
    border-color: rgba(29, 78, 216, 0.18);
    box-shadow: var(--auth-shadow-soft);
}

.auth-journey-form {
    margin-top: 0;
    gap: 18px;
}

.auth-form-section {
    display: grid;
    gap: 16px;
    padding: 18px;
}

.auth-form-section--payment.is-hidden {
    display: none;
}

.auth-section-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.auth-section-head h2 {
    margin: 0 0 6px;
    font-size: 1.12rem;
}

.auth-section-head p {
    margin: 0;
}

.auth-field-grid {
    display: grid;
    gap: 14px;
}

.auth-field-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-field--full {
    grid-column: 1 / -1;
}

.auth-resolved-address {
    min-height: 54px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(241, 245, 249, 0.78);
    color: var(--auth-text);
    line-height: 1.55;
}

.auth-field-helper {
    color: var(--auth-muted-soft);
    font-size: 0.82rem;
    line-height: 1.5;
}

.auth-plan-picker,
.auth-payment-grid {
    display: grid;
    gap: 12px;
}

.auth-plan-carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.auth-plan-carousel--static {
    grid-template-columns: minmax(0, 1fr);
}

.auth-plan-carousel__arrow {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(88, 113, 148, 0.18);
    background: rgba(11, 20, 32, 0.62);
    color: var(--auth-text);
    font-size: 1.12rem;
    line-height: 1;
    transition: opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

.auth-plan-carousel__arrow:disabled {
    opacity: 0.38;
    cursor: default;
}

.auth-plan-carousel__arrow:not(:disabled):hover {
    border-color: rgba(51, 224, 190, 0.28);
    background: rgba(17, 36, 58, 0.94);
}

.auth-plan-carousel__arrow.is-hidden {
    display: none;
}

.auth-plan-choice,
.auth-payment-choice {
    width: 100%;
    border: 1px solid var(--auth-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--auth-text);
    display: grid;
    gap: 10px;
    padding: 18px;
    text-align: left;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.auth-plan-choice:hover,
.auth-payment-choice:hover {
    transform: translateY(-1px);
    border-color: rgba(29, 78, 216, 0.2);
}

.auth-plan-picker {
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-padding-inline: 4px;
    touch-action: pan-x;
    cursor: grab;
}

.auth-plan-picker--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow: visible;
    padding: 0;
}

.auth-plan-picker::-webkit-scrollbar {
    display: none;
}

.auth-plan-choice {
    min-height: 100%;
    scroll-snap-align: center;
    user-select: none;
}

.auth-plan-picker.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

@media (min-width: 721px) {
    .auth-plan-carousel {
        grid-template-columns: minmax(0, 1fr);
    }

    .auth-plan-carousel__arrow {
        display: none;
    }

    .auth-plan-picker {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        grid-auto-flow: row;
        grid-auto-columns: auto;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
        cursor: default;
    }
}

.auth-plan-choice.is-selected,
.auth-payment-choice.is-selected {
    border-color: rgba(29, 78, 216, 0.32);
    background: rgba(29, 78, 216, 0.08);
    box-shadow: 0 18px 30px rgba(29, 78, 216, 0.12);
}

.auth-plan-choice__badge,
.auth-payment-choice__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.08);
    color: var(--auth-accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-plan-choice__copy,
.auth-plan-choice__price {
    display: grid;
    gap: 4px;
}

.auth-plan-choice__price strong {
    font-size: 1rem;
}

.auth-plan-choice__price small {
    color: var(--auth-muted);
}

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

.auth-inline-note {
    margin: 0;
    font-size: 0.92rem;
}

.auth-inline-note--warning {
    color: #f7c9a1;
}

.auth-payment-card {
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(29, 78, 216, 0.12);
    background: rgba(255, 255, 255, 0.58);
}

.auth-payment-card__intro {
    display: grid;
    gap: 6px;
}

.auth-payment-card__intro strong {
    font-family: var(--public-font-display);
    color: var(--auth-text);
}

.auth-payment-card__intro small {
    color: var(--auth-muted);
    line-height: 1.5;
}

.auth-payment-card__form {
    position: relative;
    display: grid;
    gap: 14px;
}

.auth-field-grid--payment-compact {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.auth-field-span--full {
    grid-column: 1 / -1;
}

.auth-field-span--6 {
    grid-column: span 6;
}

.auth-field-span--4 {
    grid-column: span 4;
}

.auth-field-span--3 {
    grid-column: span 3;
}

.auth-field-span--2 {
    grid-column: span 2;
}

.auth-payment-prefill {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(241, 245, 249, 0.72);
}

.auth-check--payment {
    margin: 0;
}

.auth-payment-prefill__hint {
    margin: 0;
    color: var(--auth-muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.auth-payment-brick-shell {
    display: block;
}

.auth-payment-brick-host {
    width: 100%;
    min-height: 320px;
}

.auth-payment-brick-host > * {
    width: 100%;
}

.auth-payment-card__form .login-field {
    align-content: start;
    align-self: start;
}

.auth-payment-card__form .login-field .form-control {
    width: 100%;
    height: 52px;
    min-height: 52px !important;
    max-height: 52px !important;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #f8fbff;
    color: var(--auth-text);
    box-shadow: none;
}

.auth-payment-card__form .auth-secure-field {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 52px;
    min-height: 52px !important;
    max-height: 52px !important;
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #f8fbff;
    color: var(--auth-text);
    box-shadow: none;
    overflow: hidden;
}

.auth-secure-field::before {
    content: attr(data-placeholder);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: #91a0b8;
    pointer-events: none;
    z-index: 0;
}

.auth-secure-field.is-ready::before {
    content: none;
}

.auth-payment-card__form .login-field .form-control:focus,
.auth-payment-card__form .auth-secure-field:focus-within {
    border-color: rgba(29, 78, 216, 0.42);
    background: var(--auth-surface-solid);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.auth-secure-field iframe {
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    border: 0;
    display: block;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.auth-secure-field > div {
    width: 100%;
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    flex: 1 1 auto;
}

.auth-payment-card__assistive {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.auth-payment-card__submit {
    display: none;
}

.auth-payment-progress {
    width: 100%;
    height: 6px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.14);
}

.auth-payment-progress::-webkit-progress-bar {
    background: rgba(148, 163, 184, 0.14);
    border-radius: 999px;
}

.auth-payment-progress::-webkit-progress-value {
    border-radius: 999px;
    background: linear-gradient(90deg, #38d8b2 0%, #4ea1ff 100%);
}

.auth-payment-progress::-moz-progress-bar {
    border-radius: 999px;
    background: linear-gradient(90deg, #38d8b2 0%, #4ea1ff 100%);
}

.auth-feedback {
    display: block;
    margin: 0;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.16);
    background: rgba(254, 242, 242, 0.92);
    color: #b91c1c;
    font-size: 0.94rem;
    line-height: 1.55;
}

.auth-payment-choice--locked,
.auth-payment-choice--locked:hover {
    cursor: default;
    transform: none;
}

.auth-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--auth-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.auth-check input {
    margin-top: 3px;
}

.auth-check a {
    color: #8ee4d2;
    text-decoration: none;
}

.auth-check a:hover {
    color: #c7fff5;
}

.form-control.is-invalid,
.auth-check input.is-invalid {
    border-color: rgba(248, 113, 113, 0.92) !important;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12) !important;
}

.auth-journey-highlight {
    margin-bottom: 0;
}

.auth-journey-summary {
    display: grid;
    gap: 14px;
}

.auth-journey-summary__block {
    display: grid;
    gap: 12px;
    padding: 20px;
}

.auth-journey-list,
.auth-journey-feature-list {
    margin: 0;
    padding-left: 18px;
    color: var(--auth-muted);
    display: grid;
    gap: 10px;
}

.auth-plan-inline--static {
    align-items: flex-start;
}

body.login-shell .auth-stage--journey {
    width: min(980px, calc(100% - 16px));
    grid-template-columns: minmax(0, 1fr);
}

body.login-shell .auth-card--journey,
body.login-shell .auth-aside--journey {
    border-radius: 30px;
    border: 1px solid rgba(88, 113, 148, 0.28);
    background: linear-gradient(180deg, rgba(13, 24, 39, 0.96), rgba(10, 19, 31, 0.96));
    box-shadow: 0 28px 64px rgba(3, 8, 15, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.login-shell .auth-card--journey {
    padding: 34px 32px;
}

body.login-shell .auth-back-link {
    border-color: rgba(88, 113, 148, 0.24);
    background: rgba(12, 22, 36, 0.78);
    color: #dce8fb;
}

body.login-shell .auth-back-link:hover {
    border-color: rgba(51, 224, 190, 0.28);
    background: rgba(17, 36, 58, 0.96);
    color: #ffffff;
}

body.login-shell .auth-aside--journey {
    padding: 28px;
}

body.login-shell .auth-journey-step,
body.login-shell .auth-form-section,
body.login-shell .auth-journey-summary__block,
body.login-shell .auth-plan-choice,
body.login-shell .auth-payment-choice,
body.login-shell .auth-plan-inline--static,
body.login-shell .auth-plan-card--selected {
    border-color: rgba(88, 113, 148, 0.22);
    background: rgba(11, 20, 32, 0.88);
}

body.login-shell .auth-journey-step.is-active,
body.login-shell .auth-plan-choice.is-selected,
body.login-shell .auth-payment-choice.is-selected {
    border-color: rgba(51, 224, 190, 0.32);
    background: linear-gradient(180deg, rgba(17, 36, 58, 0.92), rgba(11, 23, 37, 0.96));
    box-shadow: 0 18px 34px rgba(7, 16, 28, 0.36);
}

body.login-shell .auth-journey-step span,
body.login-shell .auth-section-head__index,
body.login-shell .auth-plan-choice__badge,
body.login-shell .auth-payment-choice__icon {
    background: rgba(51, 224, 190, 0.12);
    color: #7cebd6;
}

body.login-shell .auth-journey-step strong,
body.login-shell .auth-section-head h2,
body.login-shell .auth-plan-choice__copy strong,
body.login-shell .auth-payment-choice strong,
body.login-shell .auth-plan-inline--static strong,
body.login-shell .auth-plan-choice__price strong {
    color: var(--auth-text);
}

body.login-shell .auth-journey-step small,
body.login-shell .auth-section-head p,
body.login-shell .auth-plan-choice__copy small,
body.login-shell .auth-payment-choice small,
body.login-shell .auth-plan-choice__price small,
body.login-shell .auth-inline-note,
body.login-shell .auth-payment-card__intro small,
body.login-shell .auth-journey-summary__text,
body.login-shell .auth-journey-list,
body.login-shell .auth-journey-feature-list,
body.login-shell .auth-check {
    color: var(--auth-muted);
}

body.login-shell .auth-form-section .form-control {
    background: rgba(11, 20, 32, 0.92);
    border-color: rgba(88, 113, 148, 0.3);
    color: #ffffff;
    caret-color: #ffffff;
}

body.login-shell .auth-form-section .form-control:focus {
    border-color: rgba(46, 163, 255, 0.44);
    background: rgba(13, 24, 39, 1);
    box-shadow: 0 0 0 4px rgba(46, 163, 255, 0.12);
}

body.login-shell .auth-resolved-address {
    border-color: rgba(88, 113, 148, 0.22);
    background: rgba(8, 16, 28, 0.72);
    color: var(--auth-text);
}

body.login-shell .auth-field-helper {
    color: rgba(191, 219, 254, 0.72);
}

body.login-shell .auth-payment-card {
    border-color: rgba(88, 113, 148, 0.22);
    background: rgba(8, 16, 28, 0.72);
}

body.login-shell .auth-payment-prefill {
    border-color: rgba(88, 113, 148, 0.22);
    background: rgba(17, 36, 58, 0.38);
}

body.login-shell .auth-payment-prefill__hint {
    color: rgba(191, 219, 254, 0.78);
}

body.login-shell .auth-payment-brick-host {
    color-scheme: dark;
}

body.login-shell .auth-payment-card__intro strong {
    color: var(--auth-text);
}

body.login-shell .auth-payment-card__form .login-field .form-control,
body.login-shell .auth-payment-card__form .auth-secure-field {
    background: rgba(11, 20, 32, 0.92);
    border-color: rgba(88, 113, 148, 0.3);
    color: #ffffff !important;
    caret-color: #ffffff;
}

body.login-shell .auth-journey-form .login-field .form-control,
body.login-shell .auth-payment-card__form .login-field .form-control {
    color: #ffffff !important;
    caret-color: #ffffff;
}

body.login-shell .auth-form-section input.form-control,
body.login-shell .auth-form-section textarea.form-control,
body.login-shell .auth-form-section select.form-control,
body.login-shell .auth-journey-form .login-field input.form-control,
body.login-shell .auth-journey-form .login-field textarea.form-control,
body.login-shell .auth-journey-form .login-field select.form-control,
body.login-shell .auth-payment-card__form .login-field input.form-control,
body.login-shell .auth-payment-card__form .login-field textarea.form-control,
body.login-shell .auth-payment-card__form .login-field select.form-control {
    color: #ffffff !important;
    caret-color: #ffffff;
}

body.login-shell .auth-payment-card__form .login-field .form-control[readonly] {
    border-color: rgba(77, 97, 125, 0.36);
    background: rgba(9, 18, 29, 0.94);
    color: #ffffff !important;
    cursor: default;
}

body.login-shell .auth-3ds-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(4, 12, 22, 0.78);
}

body.login-shell .auth-3ds-overlay[hidden] {
    display: none;
}

body.login-shell .auth-3ds-dialog {
    width: min(520px, 100%);
    background: #0b1524;
    border: 1px solid rgba(130, 150, 178, 0.28);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    overflow: hidden;
}

body.login-shell .auth-3ds-dialog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(130, 150, 178, 0.2);
}

body.login-shell .auth-3ds-dialog__header h2 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    color: #ffffff;
}

body.login-shell .auth-3ds-dialog__close {
    border: 1px solid rgba(130, 150, 178, 0.32);
    border-radius: 6px;
    background: rgba(15, 28, 45, 0.96);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
}

body.login-shell #portalThreeDSFrame {
    display: block;
    width: 100%;
    height: min(600px, calc(100vh - 160px));
    min-height: 440px;
    border: 0;
    background: #ffffff;
}

body.login-shell .auth-form-section .form-control::placeholder,
body.login-shell .auth-journey-form .login-field .form-control::placeholder,
body.login-shell .auth-payment-card__form .login-field .form-control::placeholder {
    color: rgba(123, 138, 159, 0.88);
    opacity: 1;
}

body.login-shell .auth-form-section input.form-control::placeholder,
body.login-shell .auth-form-section textarea.form-control::placeholder,
body.login-shell .auth-journey-form .login-field input.form-control::placeholder,
body.login-shell .auth-journey-form .login-field textarea.form-control::placeholder,
body.login-shell .auth-payment-card__form .login-field input.form-control::placeholder,
body.login-shell .auth-payment-card__form .login-field textarea.form-control::placeholder {
    color: rgba(123, 138, 159, 0.88) !important;
    opacity: 1;
}

body.login-shell .auth-payment-card__form .login-field .form-control {
    line-height: 1.35;
}

body.login-shell .auth-journey-form .login-field:has(> #registerAddressNumber) {
    display: none !important;
}

body.login-shell .auth-payment-card__form .auth-secure-field {
    min-height: 52px !important;
    line-height: normal;
    color-scheme: dark;
    cursor: text;
}

body.login-shell .auth-payment-card__form #form-checkout__cardNumber,
body.login-shell .auth-payment-card__form #form-checkout__expirationDate,
body.login-shell .auth-payment-card__form #form-checkout__securityCode,
body.login-shell .auth-payment-card__form #form-checkout__cardNumber > *,
body.login-shell .auth-payment-card__form #form-checkout__expirationDate > *,
body.login-shell .auth-payment-card__form #form-checkout__securityCode > * {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff !important;
}

body.login-shell .auth-payment-card__form .auth-secure-field::before {
    content: none !important;
    display: none !important;
}

body.login-shell .auth-payment-card__form .auth-secure-field:has(iframe)::before,
body.login-shell .auth-payment-card__form .auth-secure-field:focus-within::before,
body.login-shell .auth-payment-card__form .auth-secure-field:hover::before {
    content: none !important;
    display: none !important;
}

body.login-shell .auth-payment-card__form .auth-secure-field iframe,
body.login-shell .auth-payment-card__form .auth-secure-field > div,
body.login-shell .auth-payment-card__form .auth-secure-field span,
body.login-shell .auth-payment-card__form .auth-secure-field input {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    color: #ffffff !important;
    caret-color: #ffffff;
    -webkit-text-fill-color: #ffffff !important;
    background: transparent !important;
    cursor: text !important;
    opacity: 1 !important;
}

body.login-shell .auth-payment-card__form .auth-secure-field iframe {
    color-scheme: dark;
    filter: invert(1) hue-rotate(180deg) brightness(1.55) contrast(1.08);
    isolation: isolate;
    mix-blend-mode: screen;
}

body.login-shell .login-field .form-control:-webkit-autofill,
body.login-shell .login-field .form-control:-webkit-autofill:hover,
body.login-shell .login-field .form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    caret-color: #ffffff;
    box-shadow: 0 0 0 1000px rgba(11, 20, 32, 0.92) inset;
    transition: background-color 9999s ease-out 0s;
}

body.login-shell .auth-date-input {
    text-align: center;
    letter-spacing: 0.08em;
}

body.login-shell .auth-date-input::placeholder {
    letter-spacing: 0.08em;
}

.auth-card--success {
    max-width: 640px;
    justify-items: center;
    text-align: center;
}

.auth-success-icon {
    width: 96px;
    height: 96px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: rgba(38, 208, 124, 0.12);
    box-shadow: 0 18px 36px rgba(38, 208, 124, 0.12);
}

.auth-success-copy {
    justify-items: center;
}

.auth-success-copy h1 {
    max-width: 16ch;
}

.auth-success-copy p {
    max-width: 44ch;
    text-align: center;
}

.auth-success-panel {
    width: min(100%, 460px);
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(51, 224, 190, 0.16);
    background: rgba(38, 208, 124, 0.08);
}

.auth-success-panel strong {
    color: var(--auth-text);
}

.auth-success-panel p {
    margin: 0;
    color: var(--auth-muted);
    line-height: 1.58;
}

.auth-success-actions {
    width: min(100%, 340px);
}

.auth-success-actions .auth-links,
body.login-shell .auth-success-actions .auth-links {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.auth-success-actions .auth-links a,
body.login-shell .auth-success-actions .auth-links a,
body.login-shell .auth-success-actions .auth-links a:last-child {
    width: auto;
    margin-left: 0;
    text-align: center;
}

.auth-success-button {
    text-decoration: none;
}

body.login-shell .auth-card--success {
    background:
        radial-gradient(circle at top center, rgba(56, 216, 178, 0.09), transparent 32%),
        linear-gradient(180deg, rgba(13, 24, 39, 0.96), rgba(10, 19, 31, 0.96));
}

body.login-shell .auth-success-icon {
    background: rgba(38, 208, 124, 0.12);
    box-shadow: 0 18px 36px rgba(6, 78, 59, 0.28);
}

@media (max-width: 1100px) {
    .auth-stage--journey {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .auth-card--journey,
    .auth-aside--journey,
    body.login-shell .auth-card--journey,
    body.login-shell .auth-aside--journey {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .auth-journey-steps,
    .auth-field-grid--two {
        grid-template-columns: 1fr;
    }

    .auth-field-grid--payment-compact {
        grid-template-columns: 1fr;
    }

    .auth-field-span--full,
    .auth-field-span--6,
    .auth-field-span--4,
    .auth-field-span--3,
    .auth-field-span--2 {
        grid-column: auto;
    }

    .auth-plan-carousel {
        grid-template-columns: 28px minmax(0, 1fr) 28px;
        gap: 6px;
    }

    .auth-plan-carousel__arrow {
        width: 28px;
        height: 28px;
        font-size: 0.94rem;
        opacity: 0.82;
        background: rgba(11, 20, 32, 0.42);
    }

    .auth-plan-picker {
        grid-auto-columns: minmax(250px, calc(100% - 42px));
        padding-inline: 2px;
        scroll-padding-inline: 2px;
    }

    .auth-form-section {
        padding: 18px;
    }

    .auth-back-link {
        width: 100%;
        justify-content: center;
    }

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