/* ============================================================================
   signin.css — Login + Cadastro (trial)
   Tema CLARO por padrão; DARK aplicado quando <html> tem a classe .au-dark
   (definida via localStorage 'La-Theme-theme-mode', igual ao resto do sistema).
   O painel de marca (esquerda) é sempre escuro — só o lado do form troca de tema.
   ============================================================================ */

/* garante que o atributo HTML hidden nunca seja sobrescrito por display:flex/block */
[hidden] { display: none !important; }

/* ─── Tokens: LIGHT (padrão) ── */
:root {
    --blue:        #1768FF;   /* --primary */
    --blue-h:      #1250CC;   /* --primary-accent */
    --blue-s:      rgba(23,104,255,.28);

    --page-bg:     radial-gradient(ellipse 60% 55% at 82% 8%, rgba(23,104,255,.07) 0%, transparent 60%),
                   linear-gradient(135deg, #D6E2F1 0%, #DFE7F5 25%, #EBE9F4 55%, #F1ECF1 80%, #F5ECEE 100%);

    --t1:          #1c3264;   /* título / texto forte */
    --t2:          #64748b;   /* secundário */
    --t3:          #9aa6b8;   /* placeholder / auxiliar */
    --label:       #334155;   /* labels */

    --form-bg:     #ffffff;   /* lado do form — branco limpo */
    --input:       #ffffff;
    --input-hover: #f7f9fc;
    --bord:        #c8d2de;
    --bord-hover:  #a8b8cc;
    --card:        #ffffff;
    --surf:        #f6f8fb;
    --focus-ring:  rgba(23,104,255,.15);
    --autofill:    #ffffff;

    --modal-bg:    #ffffff;
    --modal-bord:  transparent;
    --modal-shadow:0 24px 64px rgba(15,23,42,.18);
    --ghost-hover: #f1f5f9;
    --divider-shadow: -40px 0 80px -30px rgba(8,14,28,.35);

    --ok-bg:       rgba(34,197,94,.12);
    --ok-bord:     rgba(34,197,94,.3);
    --ok-text:     #15803d;

    --r:  12px;
    --f:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ─── Tokens: DARK (override) — valores exatos do Hub dark mode ── */
html.au-dark {
    --blue-s:      rgba(23,104,255,.4);
    --form-bg:     #0a0e1a;   /* escuro sólido, coeso com o painel */
    --divider-shadow: none;

    --page-bg:     radial-gradient(ellipse 70% 60% at 78% 10%, rgba(23,104,255,.16) 0%, transparent 55%),
                   linear-gradient(135deg, #081428 0%, #0B1124 25%, #110E22 55%, #160E1F 80%, #1A0E18 100%);

    --t1:          #F2F3F5;
    --t2:          rgba(242,243,245,.6);
    --t3:          rgba(242,243,245,.4);
    --label:       rgba(242,243,245,.85);

    --input:       #2D2D2D;   /* --bs-form-control-bg */
    --input-hover: #333333;
    --bord:        #3E3E3E;   /* --card-border-color */
    --bord-hover:  #4d4d4d;
    --card:        #1C1E27;   /* --bs-card-bg */
    --surf:        rgba(255,255,255,.03);
    --focus-ring:  rgba(23,104,255,.18);
    --autofill:    #2D2D2D;

    --modal-bg:    #0f1118;
    --modal-bord:  rgba(255,255,255,.1);
    --modal-shadow:0 32px 80px rgba(0,0,0,.7);
    --ghost-hover: rgba(255,255,255,.07);

    --ok-text:     #4ade80;
}

/* ─── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

.au-page {
    font-family: var(--f);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    color: var(--t1);
    background: var(--page-bg);
}

/* ─── Layout ── */
.au-layout {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}

/* ─── Form (direita) ── */
.au-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 56px 28px;
    background: var(--form-bg);
}
.au-form-inner {
    width: 100%;
    max-width: 380px;
    animation: auIn .5s cubic-bezier(.22,1,.36,1) both;
}
@keyframes auIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Logo mobile — colorida no claro, branca no escuro */
.au-mobile-logo { display: block; margin-bottom: 44px; }
.au-mobile-logo img { height: 38px; width: auto; }
html.au-dark .au-mobile-logo img { filter: brightness(0) invert(1); }

/* Cabeçalho */
.au-heading {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--t1);
    margin-bottom: 8px;
    line-height: 1.1;
}
.au-subhead {
    font-size: 15px;
    color: var(--t2);
    margin-bottom: 36px;
    line-height: 1.5;
}

/* Campos */
.au-field { margin-bottom: 18px; }
.au-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.006em;
    color: var(--label);
    margin-bottom: 9px;
}
.au-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
}
.au-label-row .au-label { margin-bottom: 0; }

.au-forgot {
    font-size: 12px;
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
    transition: opacity .15s;
}
.au-forgot:hover { opacity: .72; }

.au-input {
    display: block;
    width: 100%;
    padding: 15px 16px;
    background: var(--input);
    border: 1px solid var(--bord);
    border-radius: var(--r);
    font-size: 15px;
    font-family: var(--f);
    color: var(--t1);
    letter-spacing: -0.01em;
    outline: none;
    -webkit-appearance: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.au-input::placeholder { color: var(--t3); }
.au-input:hover:not(:focus) {
    border-color: var(--bord-hover);
    background: var(--input-hover);
}
.au-input:focus {
    background: var(--input-hover);
    border-color: var(--blue);
    box-shadow: 0 0 0 4px var(--focus-ring);
}

/* Autofill do Chrome/Edge — força o fundo do tema (senão vira branco) */
.au-input:-webkit-autofill,
.au-input:-webkit-autofill:hover,
.au-input:-webkit-autofill:focus,
.au-input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--t1);
    -webkit-box-shadow: 0 0 0 1000px var(--autofill) inset;
    box-shadow: 0 0 0 1000px var(--autofill) inset;
    caret-color: var(--t1);
    border-color: var(--bord);
    transition: background-color 9999s ease-out 0s;
}
.au-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--autofill) inset, 0 0 0 4px var(--focus-ring);
    box-shadow: 0 0 0 1000px var(--autofill) inset, 0 0 0 4px var(--focus-ring);
    border-color: var(--blue);
}

.au-input--pw { padding-right: 52px; }
.au-pw-wrap { position: relative; display: flex; align-items: center; }
.au-pw-wrap .au-input { width: 100%; }

/* Selects (etapa 1 do trial) — mesma base do input, com seta custom */
.au-select-wrap { position: relative; }
.au-select-wrap::after {
    content: '';
    position: absolute;
    right: 17px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--t3);
    border-bottom: 2px solid var(--t3);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}
.au-select {
    display: block;
    width: 100%;
    padding: 15px 42px 15px 16px;
    background: var(--input);
    border: 1px solid var(--bord);
    border-radius: var(--r);
    font-size: 15px;
    font-family: var(--f);
    color: var(--t1);
    letter-spacing: -0.01em;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.au-select:hover:not(:focus) { border-color: var(--bord-hover); background: var(--input-hover); }
.au-select:focus { background: var(--input-hover); border-color: var(--blue); box-shadow: 0 0 0 4px var(--focus-ring); }
.au-select:invalid { color: #8c97a6; }  /* estado "Selecionar" */
html.au-dark .au-select:invalid { color: rgba(255,255,255,.45); }
.au-select option { color: #1a1a1a; background: #fff; }
html.au-dark .au-select option { color: #f2f3f5; background: #2d2d2d; }

.au-eye {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--t3);
    cursor: pointer;
    padding: 7px;
    display: flex;
    align-items: center;
    font-size: 18px;
    border-radius: 8px;
    transition: color .15s, background .15s;
}
.au-eye:hover { color: var(--t1); background: var(--ghost-hover); }

.au-capslock {
    margin-top: 7px;
    font-size: 11px;
    color: #f59e0b;
    display: none;
}
.au-capslock.active { display: block; }

/* Botão principal */
.au-submit {
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--f);
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: background .2s, box-shadow .2s, transform .1s;
    box-shadow: 0 4px 20px var(--blue-s);
}
.au-submit:hover:not(:disabled) {
    background: var(--blue-h);
    box-shadow: 0 8px 32px var(--blue-s);
}
.au-submit:active:not(:disabled) { transform: translateY(1px); }
.au-submit:disabled {
    background: #e8edf4;
    color: #a0aab8;
    cursor: not-allowed;
    box-shadow: none;
}

/* Rodapé */
.au-trial {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: var(--t2);
}
.au-trial a { color: var(--blue); font-weight: 600; text-decoration: none; }
.au-trial a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────────────────────────────────────
   PAINEL DE MARCA (esquerda) — sempre escuro, independe do tema
   ───────────────────────────────────────────────────────────────────────────── */

.au-brand { display: none; }

@media (min-width: 1024px) {

    .au-mobile-logo { display: none; }
    .au-layout { grid-template-columns: 52% 48%; }

    .au-brand {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        padding: 3.5rem 4.5rem;
        position: relative;
        overflow: hidden;
        color: #fff;
        background: linear-gradient(155deg, #0b1222 0%, #0c1730 52%, #0a0f1d 100%);
    }

    /* Glow azul — suave, não chapado */
    .au-brand::before {
        content: '';
        position: absolute;
        top: -10%; left: 55%;
        width: 120%; height: 70%;
        transform: translateX(-50%);
        background: radial-gradient(ellipse at 50% 0%, rgba(23,104,255,.32) 0%, rgba(23,104,255,.09) 40%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    /* Profundidade na divisão: o lado do form se eleva sobre o painel (sem borda).
       No dark a sombra é desligada (--divider-shadow: none) pois os dois lados
       já são escuros e coesos. */
    .au-form-side {
        position: relative;
        z-index: 1;
        box-shadow: var(--divider-shadow);
    }
    /* Grade de pontos */
    .au-brand::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
        background-size: 30px 30px;
        pointer-events: none;
        z-index: 0;
    }
    .au-brand > *:not(.au-brand__deco) { position: relative; z-index: 1; }

    /* Ícones decorativos flutuantes */
    .au-brand__deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
    .au-brand__deco i { position: absolute; color: #fff; line-height: 1; opacity: .04; }
    .au-brand__deco i:nth-child(1) { font-size: 230px; bottom: 6%;  right: -40px; animation: auFloat 9s ease-in-out infinite; }
    .au-brand__deco i:nth-child(2) { font-size: 130px; top: 12%;    right: 14%;   opacity: .05; animation: auFloat 7s ease-in-out infinite 1s; }
    .au-brand__deco i:nth-child(3) { font-size: 180px; top: 8%;     left: -50px;  animation: auFloat 11s ease-in-out infinite .5s; }
    .au-brand__deco i:nth-child(4) { font-size: 150px; bottom: 18%; left: 30%;    opacity: .03; animation: auFloat 8s ease-in-out infinite 1.5s; }
    @keyframes auFloat {
        0%, 100% { transform: translateY(0); }
        50%      { transform: translateY(-16px); }
    }

    .au-brand__logo-link { display: block; flex-shrink: 0; }
    .au-brand__logo { height: 64px; width: auto; filter: brightness(0) invert(1); }

    .au-brand__mid {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem 0;
    }
    .au-brand__title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.04em;
        color: #fff;
        margin-bottom: 1.25rem;
    }
    .au-brand__desc {
        font-size: 16px;
        color: rgba(255,255,255,.55);
        line-height: 1.7;
        margin-bottom: 2.75rem;
        max-width: 400px;
    }
    .au-brand__list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .au-brand__list li {
        display: flex;
        align-items: center;
        gap: 13px;
        font-size: 14px;
        color: rgba(255,255,255,.62);
    }
    .au-brand__list li::before {
        content: '';
        flex-shrink: 0;
        width: 7px; height: 7px;
        border-radius: 50%;
        background: var(--blue);
        box-shadow: 0 0 10px rgba(23,104,255,.8);
    }
    .au-brand__copy {
        flex-shrink: 0;
        font-size: 12px;
        color: rgba(255,255,255,.3);
        padding-top: 2rem;
    }

    .au-form-side { min-height: 100vh; padding: 3rem 3rem; }
    .au-form-inner { max-width: 400px; }
    .au-heading { font-size: 38px; }
}

@media (min-width: 1280px) {
    .au-brand        { padding: 4rem 5.5rem; }
    .au-brand__logo  { height: 74px; }
    .au-brand__title { font-size: 4rem; }
    .au-form-inner   { max-width: 420px; }
}
@media (min-width: 1600px) {
    .au-brand        { padding: 5rem 7rem; }
    .au-brand__logo  { height: 84px; }
    .au-brand__title { font-size: 4.75rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   MODAL de erro (segue o tema do form)
   Internos login-modal__* mantidos pois error-modal.js usa querySelector.
   ───────────────────────────────────────────────────────────────────────────── */

.au-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.au-modal-overlay.is-open { display: flex; animation: auOverIn .2s ease-out; }
@keyframes auOverIn { from { opacity: 0; } to { opacity: 1; } }

.au-modal-dialog {
    background: var(--modal-bg);
    border: 1px solid var(--modal-bord);
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--modal-shadow);
    overflow: hidden;
    animation: auDialogIn .28s cubic-bezier(.22,1,.36,1);
}
@keyframes auDialogIn {
    from { opacity: 0; transform: translateY(-16px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.login-modal__body  { padding: 36px 28px 20px; text-align: center; }
.login-modal__icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
}
.login-modal__icon i { font-size: 32px; line-height: 1; display: block; margin-left: 12px; }
.login-modal__icon i.ti-loader-2 { margin-left: 0; animation: auSpin .8s linear infinite; }
@keyframes auSpin { to { transform: rotate(360deg); } }

.login-modal__title   { font-size: 19px; font-weight: 700; color: var(--t1); margin: 0 0 10px; letter-spacing: -.01em; }
.login-modal__message { font-size: 14px; color: var(--t2); line-height: 1.6; margin: 0; }
.login-modal__footer  { padding: 8px 28px 28px; display: flex; gap: 10px; }
.login-modal__btn {
    flex: 1; padding: 12px; border: none; border-radius: 10px;
    color: #fff; font-size: 14px; font-weight: 600; font-family: var(--f);
    cursor: pointer; transition: filter .15s;
}
.login-modal__btn:hover { filter: brightness(1.08); }
.login-modal__btn--ghost { background: transparent !important; color: var(--t2); }
.login-modal__btn--ghost:hover { background: var(--ghost-hover) !important; color: var(--t1); filter: none; }

/* ═════════════════════════════════════════════════════════════════════════════
   TRIAL — componentes da tela de teste grátis (multi-etapa)
   IDs/classes alternados por trial.js mantidos: password-strength*,
   au-capslock.active, trial-terms / trial-terms--error, trial-step*.
   ═════════════════════════════════════════════════════════════════════════════ */

.au-label-aux { font-weight: 400; color: var(--t3); }

/* Badge "14 dias grátis" (no painel de marca escuro) */
.au-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    background: rgba(23,104,255,.22);
    border: 1px solid rgba(23,104,255,.45);
    color: #eef4ff;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}
.au-badge i { font-size: 14px; color: #8fbcff; }

/* Navegação entre etapas */
.au-nav { display: flex; gap: 10px; margin-top: 12px; }
.au-nav-back {
    flex: 0 0 auto;
    padding: 0 20px;
    background: transparent;
    border: 1px solid var(--bord);
    border-radius: var(--r);
    color: var(--t2);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--f);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color .15s, color .15s;
}
.au-nav-back:hover { border-color: var(--bord-hover); color: var(--t1); }
.au-nav-next { flex: 1; margin-top: 0; }

/* Botão secundário (Enviar código) */
.au-submit--soft {
    background: rgba(23,104,255,.12);
    color: var(--blue);
    box-shadow: none;
}
.au-submit--soft:hover:not(:disabled) { background: rgba(23,104,255,.2); box-shadow: none; }

/* Força da senha */
.password-strength { margin-top: 12px; display: none; }
.password-strength.active { display: block; }
.password-strength__bars { display: flex; gap: 5px; margin-bottom: 7px; }
.password-strength__bar {
    flex: 1; height: 4px; border-radius: 2px;
    background: var(--bord);
    transition: background-color .2s;
}
.password-strength__text { font-size: 11px; margin: 0; font-weight: 500; line-height: 1.4; }

/* Verificação por código */
.au-code {
    margin-bottom: 18px;
    padding: 18px;
    background: var(--surf);
    border: 1px solid var(--bord);
    border-radius: var(--r);
}
.au-code__phone {
    display: flex; align-items: center; gap: 8px;
    margin: 8px 0 14px;
    padding: 11px 14px;
    background: var(--card);
    border: 1px solid var(--bord);
    border-radius: 10px;
}
.au-code__phone strong { flex: 1; font-size: 14px; font-weight: 600; color: var(--t1); }
.au-code__phone button {
    background: transparent; border: none; color: var(--blue);
    cursor: pointer; padding: 5px 7px; border-radius: 7px;
    display: inline-flex; align-items: center;
    transition: background .15s;
}
.au-code__phone button:hover { background: rgba(23,104,255,.12); }
.au-code__input { text-align: center; letter-spacing: 8px; font-size: 20px; font-weight: 600; }
.au-code__input::placeholder { letter-spacing: 4px; font-weight: 400; }
.au-code__resend { margin-top: 14px; text-align: center; font-size: 12px; color: var(--t2); }
.au-code__resend button {
    background: transparent; border: none; cursor: pointer;
    color: var(--blue); font-weight: 600; font-size: 12px; font-family: var(--f);
    display: inline-flex; align-items: center; gap: 4px; padding: 4px 6px;
}
.au-code__resend button:hover { text-decoration: underline; }
.au-code__countdown { font-weight: 600; color: var(--t2); }

/* Badge "número verificado" */
.au-verified {
    margin-bottom: 18px;
    padding: 13px 15px;
    background: var(--ok-bg);
    border: 1px solid var(--ok-bord);
    border-radius: 10px;
    color: var(--ok-text);
    font-size: 13px; font-weight: 600;
    display: flex; align-items: center; gap: 9px;
}
.au-verified i { font-size: 18px; flex-shrink: 0; }

/* Termos */
.trial-terms { margin: 6px 0 20px; }
.trial-terms__label {
    display: flex; align-items: flex-start; gap: 11px;
    cursor: pointer; font-size: 13px; color: var(--t2); line-height: 1.5;
}
.trial-terms__checkbox { position: absolute; opacity: 0; width: 0; height: 0; }
.trial-terms__checkmark {
    flex-shrink: 0; width: 21px; height: 21px;
    border: 1px solid var(--bord); border-radius: 6px;
    background: var(--input);
    display: flex; align-items: center; justify-content: center;
    color: transparent; margin-top: 1px;
    transition: background .15s, border-color .15s, color .15s;
}
.trial-terms__checkmark i { font-size: 14px; line-height: 1; }
.trial-terms__checkbox:checked + .trial-terms__checkmark {
    background: var(--blue); border-color: var(--blue); color: #fff;
}
.trial-terms__checkbox:focus-visible + .trial-terms__checkmark {
    box-shadow: 0 0 0 3px var(--focus-ring);
}
.trial-terms__text a { color: var(--blue); font-weight: 500; text-decoration: none; }
.trial-terms__text a:hover { text-decoration: underline; }
.trial-terms--error .trial-terms__checkmark { border-color: #ff453a; animation: auShake .35s ease-in-out; }
.trial-terms--error .trial-terms__text { color: #ff453a; }
@keyframes auShake {
    0%, 100% { transform: translateX(0); }
    25%      { transform: translateX(-4px); }
    75%      { transform: translateX(4px); }
}

/* Animação de troca de etapa */
.trial-step { animation: auStepIn .24s ease; }
@keyframes auStepIn {
    from { opacity: 0; transform: translateX(14px); }
    to   { opacity: 1; transform: none; }
}
.trial-step-back { animation: auStepBack .24s ease; }
@keyframes auStepBack {
    from { opacity: 0; transform: translateX(-14px); }
    to   { opacity: 1; transform: none; }
}

/* ─── Email confirm / Trial invalid ── */
.trial-invalid { text-align: center; padding: 24px 0; }
.trial-invalid__icon {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: rgba(220,53,69,.10);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
}
.trial-invalid__icon i { font-size: 42px; color: #dc3545; line-height: 1; margin-left: 15px; }
.trial-invalid__icon--success { background: rgba(22,163,74,.12); }
.trial-invalid__icon--success i { color: #16a34a; }
.trial-invalid__title { font-size: 22px; font-weight: 700; color: var(--t1); margin: 0 0 12px; letter-spacing: -0.01em; }
.trial-invalid__message { font-size: 14px; color: var(--t2); line-height: 1.6; margin: 0 0 28px; }
.trial-invalid__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 16px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--f);
    letter-spacing: -0.01em;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
    box-shadow: 0 4px 20px var(--blue-s);
}
.trial-invalid__btn:hover { background: var(--blue-h); box-shadow: 0 8px 32px var(--blue-s); color: #fff; }
