:root {
    --auth-bg: #08131d;
    --auth-bg-soft: #0f1c29;
    --auth-surface: #122335;
    --auth-surface-strong: #18344e;
    --auth-panel: rgba(255, 255, 255, 0.05);
    --auth-panel-strong: rgba(255, 255, 255, 0.08);
    --auth-border: rgba(169, 190, 213, 0.16);
    --auth-border-strong: rgba(186, 206, 228, 0.24);
    --auth-text: #f3f8fd;
    --auth-text-muted: #aabdd1;
    --auth-accent: #007bff;
    --auth-accent-dark: #005ec4;
    --auth-success: #32d26e;
    --auth-danger: #ff6b6b;
    --auth-warning: #ffb347;
    --auth-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body.auth-login-page {
    margin: 0;
    color: var(--auth-text);
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    background:
        radial-gradient(circle at 0% 0%, rgba(54, 116, 196, 0.28), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(18, 110, 127, 0.22), transparent 30%),
        linear-gradient(180deg, #0d1823 0%, #08131d 52%, #0a151f 100%);
}

body.auth-login-page.is-loading {
    overflow: hidden;
}

.auth-splash {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.22), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(24, 142, 224, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(8, 19, 29, 0.98) 0%, rgba(8, 19, 29, 0.99) 100%);
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.auth-splash__panel {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 1.55rem 1.35rem;
    text-align: center;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #172b40 0%, #122335 100%);
    border: 1px solid var(--auth-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.auth-splash__panel::before,
.auth-splash__panel::after {
    position: absolute;
    content: "";
    border-radius: 999px;
    pointer-events: none;
}

.auth-splash__panel::before {
    width: 160px;
    height: 160px;
    top: -70px;
    right: -60px;
    background: rgba(0, 123, 255, 0.16);
}

.auth-splash__panel::after {
    width: 140px;
    height: 140px;
    bottom: -76px;
    left: -54px;
    background: rgba(24, 142, 224, 0.12);
}

.auth-splash__content {
    position: relative;
    z-index: 1;
}

.auth-splash__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.34rem 0.6rem;
    border-radius: 999px;
    color: var(--auth-text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--auth-border-strong);
}

.auth-splash__ring {
    position: relative;
    width: 108px;
    height: 108px;
    margin: 1rem auto 0.9rem;
    display: grid;
    place-items: center;
}

.auth-splash__ring::before,
.auth-splash__ring::after {
    position: absolute;
    content: "";
    inset: 0;
    border-radius: 50%;
}

.auth-splash__ring::before {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-splash__ring::after {
    inset: 6px;
    border-top: 3px solid #7bb5ff;
    border-right: 3px solid transparent;
    border-bottom: 3px solid rgba(123, 181, 255, 0.18);
    border-left: 3px solid transparent;
    animation: authSplashSpin 1.4s linear infinite;
}

.auth-splash__logo-wrap {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--auth-border-strong);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
    animation: authSplashPulse 1.8s ease-in-out infinite;
}

.auth-splash__logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 14px;
    background: #ffffff;
    padding: 0.34rem;
}

.auth-splash__title {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

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

.auth-splash__progress {
    position: relative;
    height: 6px;
    margin: 1rem auto 0;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.auth-splash__progress::after {
    position: absolute;
    content: "";
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #007bff 0%, #36b3ff 100%);
    transform-origin: left center;
    animation: authSplashLoad 1.45s ease-in-out forwards;
}

.auth-splash__meta {
    margin-top: 0.6rem;
    color: #90a9c2;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.auth-login-page.is-ready .auth-splash {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.auth-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

body.auth-login-page.is-loading .auth-shell {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
}

body.auth-login-page.is-ready .auth-shell {
    opacity: 1;
    transform: none;
}

.auth-shell::before,
.auth-shell::after {
    position: absolute;
    content: "";
    border-radius: 999px;
    filter: blur(12px);
    pointer-events: none;
}

.auth-shell::before {
    width: 320px;
    height: 320px;
    top: -140px;
    left: -120px;
    background: rgba(0, 123, 255, 0.16);
}

.auth-shell::after {
    width: 360px;
    height: 360px;
    right: -160px;
    bottom: -140px;
    background: rgba(24, 142, 224, 0.12);
}

.auth-grid {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 420px);
    align-items: stretch;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--auth-border);
    background: linear-gradient(145deg, rgba(10, 20, 30, 0.64), rgba(9, 19, 29, 0.88));
    box-shadow: var(--auth-shadow);
    backdrop-filter: blur(18px);
}

.auth-overview {
    position: relative;
    display: flex;
    align-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(58, 134, 255, 0.18), transparent 32%),
        linear-gradient(160deg, #132539 0%, #112132 54%, #0e1c2b 100%);
}

.auth-overview::before {
    position: absolute;
    content: "";
    inset: 14px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.auth-overview__surface {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.auth-brand-row,
.auth-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.auth-brand-badge,
.auth-mini-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    color: var(--auth-text);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--auth-panel);
    border: 1px solid var(--auth-border-strong);
}

.auth-brand-badge.is-secondary,
.auth-mini-chip {
    color: var(--auth-text-muted);
}

.auth-brand-lockup {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
}

.auth-brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--auth-border-strong);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.auth-brand-logo {
    width: 66px;
    height: 66px;
    object-fit: contain;
    border-radius: 16px;
    background: #ffffff;
    padding: 0.45rem;
}

.auth-overview__eyebrow {
    margin: 0 0 0.32rem;
    color: #90a9c2;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.auth-overview h1 {
    margin: 0;
    color: #ffffff;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 800;
}

.auth-overview__lead {
    max-width: 540px;
    margin: 0.55rem 0 0;
    color: var(--auth-text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.auth-kpi-grid,
.auth-feature-grid {
    display: grid;
    gap: 0.65rem;
}

.auth-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-kpi-card,
.auth-feature-card {
    padding: 0.82rem 0.88rem;
    border-radius: 16px;
    background: var(--auth-panel);
    border: 1px solid var(--auth-border);
}

.auth-kpi-card span,
.auth-feature-card__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.24rem 0.5rem;
    border-radius: 999px;
    color: var(--auth-text-muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.auth-kpi-card strong {
    display: block;
    margin-top: 0.48rem;
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.24;
    font-weight: 700;
}

.auth-kpi-card p,
.auth-feature-card p {
    margin: 0.3rem 0 0;
    color: var(--auth-text-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

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

.auth-feature-card {
    display: grid;
    gap: 0.55rem;
}

.auth-feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    color: #ffffff;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--auth-accent) 0%, var(--auth-accent-dark) 100%);
    box-shadow: 0 12px 22px rgba(0, 102, 214, 0.2);
}

.auth-feature-card strong {
    display: block;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
}

.auth-focus-panel {
    padding: 0.88rem 0.92rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.12), rgba(15, 28, 41, 0.18));
    border: 1px solid rgba(108, 171, 255, 0.2);
}

.auth-focus-panel__title {
    margin: 0 0 0.45rem;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
}

.auth-focus-list {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.auth-focus-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.58rem;
    align-items: start;
    color: var(--auth-text-muted);
    font-size: 0.83rem;
    line-height: 1.42;
}

.auth-focus-list i {
    margin-top: 0.18rem;
    color: #7bb5ff;
}

.auth-login-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(180deg, #142638 0%, #112132 100%);
}

.auth-panel-shell {
    height: 100%;
    width: 100%;
    max-width: 364px;
    margin: 0 auto;
    padding: 1.12rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid var(--auth-border);
    display: grid;
    align-content: center;
    gap: 0.85rem;
}

.auth-panel-head {
    text-align: center;
}

.auth-label-chip {
    margin: 0 auto;
}

.auth-panel-head h2 {
    margin: 0.45rem 0 0;
    color: #ffffff;
    font-size: 1.58rem;
    font-weight: 800;
    line-height: 1.1;
}

.auth-panel-head p {
    margin: 0.45rem 0 0;
    color: var(--auth-text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.auth-label-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.28rem 0.56rem;
    border-radius: 999px;
    color: #dce7f2;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--auth-border-strong);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-panel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
}

.auth-form {
    display: grid;
    gap: 0.2rem;
}

.auth-form-label {
    margin: 0.24rem 0 0.28rem;
    color: #c4d4e4;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.auth-input {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--auth-border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.auth-input:focus-within {
    border-color: rgba(108, 171, 255, 0.4);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.auth-input__icon,
.auth-input__button {
    width: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #89a7c6;
    font-size: 0.9rem;
}

.auth-input__button {
    background: transparent;
    border: 0;
    cursor: pointer;
}

.auth-input input {
    width: 100%;
    border: 0;
    outline: none;
    padding: 0.7rem 0.2rem 0.7rem 0;
    color: #ffffff;
    background: transparent;
    font-size: 0.92rem;
    font-weight: 600;
}

.auth-input input::placeholder {
    color: #7e98b2;
    font-weight: 500;
}

.auth-autofill-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.field-error {
    min-height: 18px;
    margin-top: 0.26rem;
    color: var(--auth-danger);
    font-size: 0.74rem;
}

.btn-auth-primary,
.btn-auth-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn-auth-primary {
    margin-top: 0.28rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--auth-accent) 0%, var(--auth-accent-dark) 100%);
    border: 1px solid rgba(108, 171, 255, 0.32);
    box-shadow: 0 14px 26px rgba(0, 102, 214, 0.22);
}

.btn-auth-primary:hover,
.btn-auth-primary:focus {
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-auth-primary:disabled {
    opacity: 0.75;
    transform: none;
}

.auth-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.btn-auth-secondary {
    color: #dce7f2;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--auth-border);
    box-shadow: none;
}

.btn-auth-secondary:hover,
.btn-auth-secondary:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.auth-notice-slot {
    min-height: 4px;
    display: flex;
    justify-content: center;
}

.auth-footnote {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--auth-text-muted);
    font-size: 0.74rem;
    line-height: 1.45;
    text-align: center;
}

.auth-footnote strong {
    color: var(--auth-text);
    font-weight: 700;
}

.auth-modal .modal-content {
    border-radius: 26px;
    border: 1px solid var(--auth-border);
    background: linear-gradient(180deg, #172b40 0%, #122335 100%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.auth-modal .modal-header {
    padding: 1.15rem 1.25rem 0;
    border-bottom: 0;
}

.auth-modal .modal-body {
    padding: 0 1.25rem 1.25rem;
}

.auth-modal .close {
    color: #ffffff;
    opacity: 0.75;
    text-shadow: none;
}

.auth-modal .close:hover {
    opacity: 1;
}

.auth-modal .modal-title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
}

.auth-modal .modal-copy {
    margin: 0.35rem 0 0;
    color: var(--auth-text-muted);
    font-size: 0.9rem;
}

.auth-modal .form-group label {
    display: block;
    margin-bottom: 0.45rem;
    color: #c4d4e4;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.auth-modal .form-control {
    height: 50px;
    border-radius: 14px;
    border: 1px solid var(--auth-border);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.auth-modal .form-control:focus {
    border-color: rgba(108, 171, 255, 0.4);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.auth-modal .form-control::placeholder {
    color: #7e98b2;
}

.auth-modal .btn {
    border-radius: 14px;
    min-height: 48px;
    font-weight: 700;
}

.auth-modal .btn-primary {
    background: linear-gradient(135deg, var(--auth-accent) 0%, var(--auth-accent-dark) 100%);
    border-color: rgba(108, 171, 255, 0.32);
}

.auth-modal .btn-dark {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--auth-border);
}

.auth-mpin-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.auth-mpin-grid input {
    height: 58px;
    border-radius: 16px;
    border: 1px solid var(--auth-border-strong);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 1.65rem;
    font-weight: 800;
    box-shadow: none;
}

.auth-mpin-grid input:focus {
    border-color: rgba(108, 171, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.12);
}

#toast-container > .toast-success,
#toast-container > .toast-error,
#toast-container > .toast-info,
#toast-container > .toast-warning {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
    opacity: 1;
}

@keyframes authSplashSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes authSplashPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.24);
    }
}

@keyframes authSplashLoad {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

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

    .auth-login-panel {
        padding-top: 0;
    }

    .auth-focus-panel {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .auth-splash__panel {
        max-width: 340px;
        padding: 1.25rem 1rem;
        border-radius: 22px;
    }

    .auth-splash__ring {
        width: 92px;
        height: 92px;
        margin-top: 0.85rem;
    }

    .auth-splash__logo-wrap {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .auth-splash__logo {
        width: 44px;
        height: 44px;
    }

    .auth-splash__title {
        font-size: 1.28rem;
    }

    .auth-splash__lead {
        font-size: 0.8rem;
    }

    .auth-shell {
        padding: 10px;
    }

    .auth-grid {
        border-radius: 20px;
    }

    .auth-overview,
    .auth-login-panel {
        padding: 14px;
    }

    .auth-panel-shell {
        padding: 0.95rem;
        border-radius: 18px;
    }

    .auth-brand-lockup {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .auth-brand-logo-wrap {
        width: 74px;
        height: 74px;
        border-radius: 18px;
    }

    .auth-brand-logo {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .auth-overview h1 {
        font-size: 1.85rem;
    }

    .auth-overview__lead {
        max-width: 100%;
        font-size: 0.82rem;
        line-height: 1.42;
    }

    .auth-brand-row {
        justify-content: center;
    }

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

    .auth-kpi-grid,
    .auth-feature-grid,
    .auth-focus-panel {
        display: none;
    }

    .auth-panel-head h2 {
        font-size: 1.45rem;
    }

    .auth-footnote {
        flex-direction: column;
    }

    .auth-mpin-grid {
        gap: 0.45rem;
    }

    .auth-mpin-grid input {
        height: 50px;
        font-size: 1.28rem;
    }
}

@media (min-width: 1200px) and (max-height: 860px) {
    .auth-shell {
        padding: 10px;
    }

    .auth-grid {
        max-width: 1080px;
    }

    .auth-overview,
    .auth-login-panel {
        padding: 16px;
    }

    .auth-overview__surface,
    .auth-panel-shell {
        gap: 0.72rem;
    }

    .auth-overview h1 {
        font-size: 2.1rem;
    }

    .auth-overview__lead {
        font-size: 0.84rem;
        line-height: 1.42;
    }

    .auth-kpi-grid,
    .auth-feature-grid {
        gap: 0.55rem;
    }

    .auth-kpi-card,
    .auth-feature-card {
        padding: 0.72rem 0.78rem;
    }

    .auth-feature-card:nth-child(n+3),
    .auth-focus-panel {
        display: none;
    }

    .auth-panel-head h2 {
        font-size: 1.42rem;
    }

    .auth-panel-head p {
        font-size: 0.82rem;
    }

    .btn-auth-primary,
    .btn-auth-secondary,
    .auth-input {
        min-height: 44px;
    }

    .auth-footnote {
        font-size: 0.7rem;
    }
}
