:root {
    --auth-accent: #146be8;
    --auth-accent-hover: #0d5bc9;
    --auth-ink: #17243a;
    --auth-muted: #61708a;
    --auth-faint: #8d9ab0;
    --auth-line: #e1e8f2;
    --auth-soft: #f1f5fa;
    --auth-danger: #c83243;
    --auth-success: #247f47;
    --auth-warning: #986100;
}

* { box-sizing: border-box; }
html { min-width: 320px; min-height: 100%; background: #fff; -webkit-text-size-adjust: 100%; }

body.auth-page {
    min-width: 320px;
    min-height: 100dvh;
    margin: 0;
    overflow-x: hidden;
    background: #fff;
    color: var(--auth-ink);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    letter-spacing: -.01em;
}

body.auth-page--login { height: 100dvh; overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[x-cloak] { display: none !important; }

.auth-layout {
    display: grid;
    min-height: 100dvh;
    grid-template-columns: minmax(420px, 43%) minmax(0, 1fr);
    background: #fff;
}
.auth-page--login .auth-layout { height: 100dvh; min-height: 0; }

.auth-main { min-width: 0; min-height: 0; background: #fff; }
.auth-main__inner {
    display: grid;
    width: min(100%, 500px);
    height: 100%;
    min-height: 0;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 64px);
    grid-template-rows: auto minmax(0, 1fr) auto;
}

.auth-topbar { display: flex; min-height: 36px; align-items: center; justify-content: space-between; gap: 16px; }
.auth-brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 680; letter-spacing: -.025em; }
.auth-brand__mark { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 7px; background: var(--auth-accent); }
.auth-brand__mark img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.auth-brand__name { font-size: 14px; }
.auth-topbar__meta { color: var(--auth-faint); font-size: 10px; }
.auth-topbar__meta::before { display: none; }

.auth-back { display: inline-flex; min-height: 34px; align-items: center; gap: 7px; padding: 0; color: var(--auth-muted); font-size: 11px; font-weight: 610; }
.auth-back:hover { color: var(--auth-ink); }
.auth-back i { font-size: 9px; }

.auth-panel { display: flex; min-height: 0; flex-direction: column; align-self: center; justify-content: center; padding: 24px 0; }
.auth-panel--compact { max-width: 430px; }
.auth-eyebrow { margin: 0 0 10px; color: var(--auth-accent); font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.auth-eyebrow__dot { display: none; }

.auth-title { max-width: 440px; margin: 0; color: var(--auth-ink); font-size: clamp(34px, 3.4vw, 46px); font-weight: 680; letter-spacing: -.05em; line-height: 1; }
.auth-lede { max-width: 400px; margin: 14px 0 0; color: var(--auth-muted); font-size: 13px; line-height: 1.55; }

.auth-form { display: grid; gap: 15px; margin-top: clamp(24px, 4vh, 34px); }
.auth-field { display: grid; gap: 7px; }
.auth-label-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.auth-label { color: #43516a; font-size: 11px; font-weight: 620; }
.auth-label__hint { color: var(--auth-faint); font-size: 9px; }
.auth-input-wrap { position: relative; }

.auth-input {
    width: 100%;
    height: 46px;
    padding: 0 13px;
    border: 1px solid transparent;
    border-radius: 8px;
    outline: 0;
    background: var(--auth-soft);
    color: var(--auth-ink);
    font-size: 13px;
    transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}
.auth-input--with-action { padding-right: 45px; }
.auth-input::placeholder { color: #aaaab0; }
.auth-input:hover { background: #eaf0f7; }
.auth-input:focus { border-color: #83b6e8; background: #fff; box-shadow: 0 0 0 3px rgba(0,102,204,.09); }
.auth-input:-webkit-autofill { -webkit-box-shadow: 0 0 0 1000px #f3f3f4 inset; -webkit-text-fill-color: var(--auth-ink); }

.auth-reveal { position: absolute; top: 50%; right: 5px; display: grid; width: 36px; height: 36px; place-items: center; transform: translateY(-50%); border: 0; border-radius: 7px; background: transparent; color: var(--auth-faint); cursor: pointer; }
.auth-reveal:hover { background: #e8e8ea; color: var(--auth-ink); }

.auth-form-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.auth-check { display: inline-flex; align-items: center; gap: 7px; color: var(--auth-muted); font-size: 10.5px; cursor: pointer; }
.auth-check input { width: 15px; height: 15px; margin: 0; accent-color: var(--auth-accent); }
.auth-text-link { color: var(--auth-accent); font-size: 10.5px; font-weight: 620; }
.auth-text-link:hover { text-decoration: underline; }

.auth-button { display: inline-flex; width: 100%; min-height: 46px; align-items: center; justify-content: center; gap: 8px; padding: 0 16px; border: 1px solid var(--auth-accent); border-radius: 8px; background: var(--auth-accent); box-shadow: none; color: #fff; font-size: 12px; font-weight: 650; cursor: pointer; transition: background 140ms ease, transform 140ms ease; }
.auth-button:hover { border-color: var(--auth-accent-hover); background: var(--auth-accent-hover); }
.auth-button:active { transform: scale(.99); }
.auth-button:disabled { cursor: wait; opacity: .7; }
.auth-button--secondary { border-color: var(--auth-line); background: #fff; color: var(--auth-ink); }
.auth-button--secondary:hover { background: #f5f5f6; }
.auth-button__arrow { font-size: 9px; }
.auth-spinner { width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: auth-spin .7s linear infinite; }
@keyframes auth-spin { to { transform: rotate(360deg); } }

.auth-alerts { display: grid; gap: 6px; margin: 0 0 15px; }
.auth-alert { display: flex; min-height: 38px; align-items: center; gap: 9px; padding: 8px 10px; border: 0; border-left: 2px solid currentColor; border-radius: 0; font-size: 10.5px; line-height: 1.4; }
.auth-alert__content { min-width: 0; flex: 1; }
.auth-alert--error { background: #fff5f6; color: var(--auth-danger); }
.auth-alert--success { background: #f1f8f3; color: var(--auth-success); }
.auth-alert--warning { background: #fff8e9; color: var(--auth-warning); }
.auth-alert__action { margin-left: auto; font-weight: 650; text-decoration: underline; }

.auth-footnote { align-self: end; margin: 0; color: var(--auth-faint); font-size: 9.5px; text-align: left; }
.auth-footnote i { margin-right: 4px; color: var(--auth-accent); }
.auth-code { height: 54px; text-align: center; font-size: 22px; font-weight: 680; letter-spacing: .28em; }
.auth-code-note { margin: -4px 0 0; color: var(--auth-muted); font-size: 10.5px; line-height: 1.5; }
.auth-resend { display: flex; align-items: center; justify-content: center; gap: 5px; color: var(--auth-muted); font-size: 10.5px; }
.auth-link-button { padding: 0; border: 0; background: transparent; color: var(--auth-accent); font-weight: 650; cursor: pointer; }
.auth-action-gap { margin-top: 9px; }
.auth-identity { display: flex; align-items: center; gap: 9px; margin-top: 14px; padding: 10px 0; border-top: 1px solid var(--auth-line); border-bottom: 1px solid var(--auth-line); color: var(--auth-muted); font-size: 10.5px; }
.auth-identity i { color: var(--auth-accent); }
.auth-success-state { display: grid; justify-items: start; }
.auth-success-state__icon { display: grid; width: 42px; height: 42px; margin-bottom: 16px; place-items: center; border-radius: 50%; background: #edf7f0; color: var(--auth-success); }
.auth-success-state .auth-button { margin-top: 20px; }
.auth-strength { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.auth-strength span { height: 2px; background: #dedee0; }
.auth-strength span:nth-child(-n+3) { background: var(--auth-accent); }

/* A quiet editorial counterweight—no mock dashboard, no decorative cards. */
.auth-showcase { position: relative; min-width: 0; overflow: hidden; border-left: 1px solid #dce7f5; background: #eef5ff; color: var(--auth-ink); }
.auth-showcase::before, .auth-showcase::after { display: none; }
.auth-showcase__inner { display: flex; width: min(100%, 700px); height: 100%; margin: 0 auto; flex-direction: column; justify-content: center; padding: clamp(48px, 8vw, 110px); }
.auth-window { display: none; }
.auth-showcase__pill { display: inline-flex; width: fit-content; min-height: 28px; align-items: center; gap: 7px; margin-bottom: 28px; padding: 0 10px; border: 1px solid rgba(20,107,232,.15); border-radius: 999px; background: rgba(255,255,255,.68); color: var(--auth-accent); font-size: 9px; font-weight: 650; }
.auth-showcase__pill::before { width: 6px; height: 6px; border-radius: 50%; background: var(--auth-accent); content: ""; }
.auth-showcase__copy { display: block; }
.auth-showcase__title { max-width: 520px; margin: 0; color: var(--auth-ink); font-size: clamp(38px, 4.8vw, 60px); font-weight: 650; letter-spacing: -.055em; line-height: .98; }
.auth-showcase__text { max-width: 430px; margin: 18px 0 0; color: var(--auth-muted); font-size: 14px; line-height: 1.6; }
.auth-showcase__copy::after { display: block; width: 44px; height: 2px; margin-top: 34px; background: var(--auth-accent); content: ""; }

@media (max-width: 1000px) {
    .auth-layout { grid-template-columns: minmax(410px, 50%) minmax(0,1fr); }
    .auth-showcase__inner { padding: 48px; }
}

@media (max-width: 820px) {
    .auth-layout, .auth-page--login .auth-layout { display: block; height: 100dvh; min-height: 100dvh; }
    .auth-main { height: 100%; }
    .auth-main__inner { width: min(100%, 480px); padding: max(20px, env(safe-area-inset-top)) 20px max(16px, env(safe-area-inset-bottom)); }
    .auth-showcase { display: none; }
    .auth-panel { padding: 18px 0; }
    .auth-title { font-size: clamp(32px, 9.5vw, 40px); }
    .auth-footnote { text-align: center; }
}

@media (max-width: 440px) {
    .auth-main__inner { padding-right: 17px; padding-left: 17px; }
    .auth-topbar__meta { display: none; }
    .auth-title { font-size: clamp(31px, 10vw, 38px); }
    .auth-lede { font-size: 12.5px; }
    .auth-form { gap: 13px; }
    .auth-input, .auth-button { height: 45px; min-height: 45px; }
}

@media (max-height: 680px) {
    .auth-page--login .auth-panel { padding: 9px 0; }
    .auth-page--login .auth-lede { display: none; }
    .auth-page--login .auth-form { gap: 10px; margin-top: 16px; }
    .auth-page--login .auth-input, .auth-page--login .auth-button { height: 42px; min-height: 42px; }
    .auth-page--login .auth-alerts { margin-bottom: 8px; }
    .auth-showcase__title { font-size: clamp(36px, 4.2vw, 50px); }
}

@media (max-height: 540px) {
    .auth-page--login .auth-eyebrow, .auth-page--login .auth-footnote { display: none; }
    .auth-page--login .auth-title { font-size: 29px; }
    .auth-page--login .auth-form { grid-template-columns: repeat(2, minmax(0,1fr)); align-items: end; }
    .auth-page--login .auth-form-row, .auth-page--login .auth-button { grid-column: 1 / -1; }
    .auth-page--login .auth-main__inner { padding-top: 12px; padding-bottom: 12px; grid-template-rows: auto 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

:where(.auth-page) :focus-visible { outline: 2px solid rgba(0,102,204,.35); outline-offset: 2px; }

/* Verification is a focused, native-feeling code entry screen. */
body.auth-page--verify {
    min-height: 100dvh;
    overflow: hidden;
    background: #fff;
}

.verify-screen {
    display: flex;
    width: min(100%, 560px);
    min-height: 100dvh;
    margin: 0 auto;
    flex-direction: column;
    padding: max(22px, env(safe-area-inset-top)) 28px max(24px, env(safe-area-inset-bottom));
}

.verify-topbar {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.verify-back {
    display: inline-flex;
    align-items: center;
}

.verify-back {
    min-height: 42px;
    gap: 7px;
    color: var(--auth-accent);
    font-size: 14px;
    font-weight: 650;
}

.verify-back i { font-size: 12px; }

.verify-content {
    display: flex;
    width: 100%;
    max-width: 480px;
    min-height: 0;
    margin: auto;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0 44px;
    text-align: center;
}

.verify-mark {
    display: grid;
    width: 82px;
    height: 82px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 24px;
    background: #edf6ff;
    color: var(--auth-accent);
}

.verify-mark i { font-size: 30px; }

.verify-copy { width: 100%; }
.verify-copy h1 {
    margin: 0;
    overflow-wrap: anywhere;
    color: #101828;
    font-size: clamp(27px, 4vw, 36px);
    font-weight: 720;
    letter-spacing: -.045em;
    line-height: 1.06;
}

.verify-copy > p:last-child {
    margin: 13px 0 0;
    color: #7b8799;
    font-size: 14px;
    line-height: 1.45;
}

.verify-alerts {
    display: grid;
    width: 100%;
    gap: 8px;
    margin: 20px 0 -6px;
}

.verify-alert {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.4;
}

.verify-alert--error { background: #fff0f2; color: #c83243; }
.verify-alert--success { background: #edf9f3; color: #147a50; }

.verify-form {
    display: grid;
    width: 100%;
    gap: 0;
    margin-top: 32px;
}

.verify-pin {
    position: relative;
    width: 100%;
    cursor: text;
}

.verify-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.verify-pin__input {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    opacity: .01;
    background: transparent;
    color: transparent;
    caret-color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    letter-spacing: 0;
    cursor: text;
}

.verify-pin__input::selection { background: transparent; color: transparent; }
.verify-pin__input::-webkit-textfield-decoration-container { visibility: hidden; }

.verify-pin__cells {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.verify-pin__cell {
    display: grid;
    aspect-ratio: .82;
    min-width: 0;
    max-height: 70px;
    place-items: center;
    border: 1.5px solid #dfe5ed;
    border-radius: 13px;
    background: #fff;
    color: #101828;
    font-size: clamp(22px, 6vw, 30px);
    font-weight: 650;
    line-height: 1;
    transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.verify-pin__cell.is-filled { border-color: #a9cdef; background: #f8fbff; }
.verify-pin__cell.is-active { border-color: #3b91ec; box-shadow: 0 0 0 3px rgba(59,145,236,.12); transform: translateY(-1px); }
.verify-form.has-error .verify-pin__cell { border-color: #e99da6; background: #fffafa; }

.verify-resend {
    min-height: 44px;
    margin: 18px auto 22px;
    padding: 0 8px;
    border: 0;
    background: transparent;
    color: #3284d7;
    font-size: 13px;
    font-weight: 620;
    cursor: pointer;
}

.verify-resend:disabled { cursor: wait; opacity: .6; }

.verify-continue {
    display: inline-flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 13px;
    background: var(--auth-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 670;
    cursor: pointer;
    transition: background 140ms ease, transform 140ms ease, opacity 140ms ease;
}

.verify-continue:hover:not(:disabled) { background: var(--auth-accent-hover); }
.verify-continue:active:not(:disabled) { transform: scale(.99); }
.verify-continue:disabled { cursor: not-allowed; opacity: .36; }

.verify-expiry {
    margin: 18px 0 0;
    color: #99a3b2;
    font-size: 10.5px;
    line-height: 1.4;
}

.verify-expiry i { margin-right: 5px; color: #60a5e8; }

@media (max-width: 560px) {
    .verify-screen { padding-right: 21px; padding-left: 21px; }
    .verify-content { justify-content: flex-start; padding-top: clamp(38px, 10vh, 84px); padding-bottom: 20px; }
    .verify-mark { width: 76px; height: 76px; margin-bottom: 25px; border-radius: 22px; }
    .verify-mark i { font-size: 28px; }
    .verify-copy h1 { font-size: clamp(24px, 6.6vw, 29px); }
    .verify-copy > p:last-child { font-size: 13px; }
    .verify-form { margin-top: 29px; }
    .verify-pin__cells { gap: 8px; }
    .verify-pin__cell { border-radius: 11px; }
}

@media (max-width: 370px) {
    .verify-screen { padding-right: 16px; padding-left: 16px; }
    .verify-content { padding-top: 28px; }
    .verify-mark { width: 70px; height: 70px; margin-bottom: 20px; }
    .verify-pin__cells { gap: 6px; }
    .verify-resend { margin-top: 14px; margin-bottom: 18px; }
}

@media (max-height: 700px) {
    .verify-content { padding-top: 18px; padding-bottom: 8px; }
    .verify-mark { width: 64px; height: 64px; margin-bottom: 17px; border-radius: 19px; }
    .verify-mark i { font-size: 24px; }
    .verify-copy h1 { font-size: 28px; }
    .verify-copy > p:last-child { margin-top: 8px; }
    .verify-form { margin-top: 20px; }
    .verify-pin__cell { max-height: 58px; }
    .verify-resend { margin-top: 9px; margin-bottom: 12px; }
    .verify-continue { min-height: 48px; }
    .verify-expiry { margin-top: 10px; }
}

/* Mobile application composition ---------------------------------------
   A compact, touch-first Flutter-style rhythm. Desktop remains unchanged. */
.verify-eyebrow {
    margin: 0 0 10px;
    color: var(--auth-accent);
    font-size: 10px;
    font-weight: 760;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.verify-copy > p:last-child strong {
    color: #53647c;
    font-weight: 680;
    overflow-wrap: anywhere;
}

.verify-client-message {
    min-height: 20px;
    margin: 12px 0 0;
    color: #c83243;
    font-size: 11px;
    font-weight: 620;
    line-height: 1.45;
    text-align: center;
}

.verify-form.is-checking .verify-pin__cell {
    border-color: #81b6ec;
    background: #edf6ff;
    color: #146be8;
}

.verify-form.is-success .verify-pin__cell {
    border-color: #43bb83;
    background: #eafaf2;
    color: #148557;
    box-shadow: 0 0 0 3px rgba(29, 170, 105, .08);
    transform: none;
}

.verify-form.is-success .verify-client-message { color: #148557; }
.verify-form.is-success .verify-continue { background: #18a66a; opacity: 1; }

@media (max-width: 820px) {
    body.auth-page--login .auth-main__inner {
        display: flex;
        width: min(100%, 480px);
        height: 100dvh;
        padding: max(18px, env(safe-area-inset-top)) 22px max(17px, env(safe-area-inset-bottom));
        flex-direction: column;
    }

    body.auth-page--login .auth-topbar { min-height: 44px; }
    body.auth-page--login .auth-brand { gap: 11px; }
    body.auth-page--login .auth-brand__mark {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }
    body.auth-page--login .auth-brand__mark img { width: 22px; height: 22px; }
    body.auth-page--login .auth-brand__name { font-size: 17px; font-weight: 720; }

    body.auth-page--login .auth-panel {
        width: 100%;
        min-height: auto;
        align-self: auto;
        justify-content: flex-start;
        padding: clamp(50px, 9dvh, 86px) 0 24px;
    }
    body.auth-page--login .auth-eyebrow {
        margin-bottom: 11px;
        font-size: 10px;
        letter-spacing: .14em;
    }
    body.auth-page--login .auth-title {
        max-width: 390px;
        font-size: clamp(33px, 9.4vw, 40px);
        font-weight: 730;
        letter-spacing: -.055em;
        line-height: 1.02;
    }
    body.auth-page--login .auth-lede {
        max-width: 410px;
        margin-top: 13px;
        color: #718097;
        font-size: 13px;
        line-height: 1.5;
    }
    body.auth-page--login .auth-form {
        gap: 17px;
        margin-top: clamp(27px, 4.6dvh, 36px);
    }
    body.auth-page--login .auth-field { gap: 8px; }
    body.auth-page--login .auth-label { font-size: 12px; font-weight: 680; }
    body.auth-page--login .auth-input {
        height: 54px;
        padding-inline: 16px;
        border-radius: 15px;
        background: #f2f6fb;
        font-size: 16px;
    }
    body.auth-page--login .auth-input--with-action { padding-right: 50px; }
    body.auth-page--login .auth-reveal { right: 7px; width: 40px; height: 40px; border-radius: 12px; }
    body.auth-page--login .auth-form-row { min-height: 24px; }
    body.auth-page--login .auth-check,
    body.auth-page--login .auth-text-link { font-size: 11.5px; }
    body.auth-page--login .auth-check input { width: 18px; height: 18px; }
    body.auth-page--login .auth-button {
        min-height: 54px;
        border-radius: 15px;
        font-size: 14px;
    }
    body.auth-page--login .auth-footnote {
        align-self: center;
        margin-top: auto;
        padding-top: 16px;
        font-size: 10px;
        text-align: center;
    }

    body.auth-page--verify { background: #f8faff; }
    .verify-screen {
        width: min(100%, 500px);
        padding: max(18px, env(safe-area-inset-top)) 21px max(20px, env(safe-area-inset-bottom));
    }
    .verify-topbar { min-height: 44px; }
    .verify-back { min-height: 44px; font-size: 13px; }
    .verify-content {
        max-width: 440px;
        margin: 0 auto;
        justify-content: flex-start;
        padding: clamp(40px, 7dvh, 68px) 0 20px;
    }
    .verify-mark {
        width: 70px;
        height: 70px;
        margin-bottom: 22px;
        border-radius: 22px;
        background: #eaf4ff;
    }
    .verify-mark i { font-size: 26px; }
    .verify-copy h1 {
        font-size: clamp(29px, 8vw, 35px);
        font-weight: 740;
        letter-spacing: -.05em;
    }
    .verify-copy > p:last-child {
        max-width: 390px;
        margin: 12px auto 0;
        font-size: 13px;
        line-height: 1.5;
    }
    .verify-form { margin-top: 28px; }
    .verify-pin__cells { gap: 8px; }
    .verify-pin__cell {
        aspect-ratio: 1;
        max-height: 60px;
        border-color: transparent;
        border-radius: 16px;
        background: #eef3f9;
        font-size: clamp(21px, 6vw, 27px);
    }
    .verify-pin__cell.is-filled { border-color: #a9cdef; background: #f5faff; }
    .verify-pin__cell.is-active { border-color: #3b91ec; background: #fff; }
    .verify-resend {
        min-height: 42px;
        margin: 14px auto 16px;
        font-size: 12.5px;
    }
    .verify-continue { min-height: 54px; border-radius: 16px; font-size: 14px; }
    .verify-expiry { margin-top: 16px; font-size: 10.5px; }
}

@media (max-width: 440px) {
    body.auth-page--login .auth-main__inner { padding-right: 19px; padding-left: 19px; }
    body.auth-page--login .auth-panel { padding-top: clamp(42px, 7.5dvh, 66px); }
    body.auth-page--login .auth-title { font-size: clamp(31px, 9vw, 37px); }
    .verify-screen { padding-right: 17px; padding-left: 17px; }
    .verify-content { padding-top: clamp(34px, 6dvh, 54px); }
    .verify-pin__cells { gap: 7px; }
    .verify-pin__cell { border-radius: 14px; }
}

@media (max-height: 720px) and (max-width: 820px) {
    body.auth-page--login .auth-panel { padding-top: 22px; padding-bottom: 12px; }
    body.auth-page--login .auth-lede { margin-top: 9px; }
    body.auth-page--login .auth-form { gap: 12px; margin-top: 18px; }
    body.auth-page--login .auth-input,
    body.auth-page--login .auth-button { height: 48px; min-height: 48px; }
    .verify-content { padding-top: 18px; }
}
