/*------------------------------------------------------------------
[TapNVisit — Auth pages]

Self-contained stylesheet for the signed-out pages (login, first-run setup,
forgot password, reset password).
Those pages deliberately do NOT load master_style.css / the SoftMaterial
admin theme: they render none of the admin shell, so pulling ~1MB of theme
CSS in just to draw two inputs meant fighting its rules on every element.
Everything the auth pages need is here; the only outside dependencies are
themify-icons.css (icon glyphs) and sweetalert.css (the logout toast).

Tokens mirror resource/css/admin-ui.css so the login screen and the
dashboard the user lands on read as the same product.

Contents
  1.  Design tokens
  2.  Reset & page shell
  3.  Brand panel (left) + ambient animation
  4.  Form panel (right)
  5.  Logo mark & wordmark
  6.  Fields, floating labels, validation
  7.  Options row: remember me / forgot password
  8.  Submit button & loading state
  9.  Inline alert
  9a. Terminal state panel (link sent / expired / done)
  9b. Password strength meter
  10. Responsive: tablet & mobile
  11. Accessibility & motion
-------------------------------------------------------------------*/

/* ============================================================
   1. Design tokens — kept in step with admin-ui.css
   ============================================================ */
:root {
    --auth-primary: #0b74d1;
    --auth-primary-dark: #095ba6;
    --auth-primary-deep: #06407a;
    --auth-primary-light: #e8f2fd;
    --auth-accent: #06b6d4;

    /* Held as a variable so the --super modifier can re-point it once and have
       both the desktop panel and the mobile band follow, regardless of the
       order the rules appear in. */
    --auth-brand-grad: linear-gradient(140deg, var(--auth-primary-deep) 0%, var(--auth-primary) 46%, var(--auth-accent) 100%);

    --auth-danger: #dc3545;
    --auth-danger-light: #fdecee;

    /* Strength meter steps, weak through strong. */
    --auth-weak: #e0563f;
    --auth-fair: #e0a03f;
    --auth-good: #3f9ee0;
    --auth-strong: #21a179;

    --auth-bg: #eef2f7;
    --auth-surface: #ffffff;
    --auth-border: #e3e8ef;
    --auth-border-strong: #cbd5e1;
    --auth-text: #16202c;
    --auth-text-soft: #475569;
    --auth-muted: #64748b;

    --auth-radius-sm: 8px;
    --auth-radius: 12px;
    --auth-radius-lg: 18px;
    --auth-shadow-md: 0 4px 12px rgba(16, 32, 48, .08), 0 1px 3px rgba(16, 32, 48, .05);
    --auth-shadow-lg: 0 18px 48px rgba(16, 32, 48, .16);
    --auth-focus-ring: 0 0 0 3px rgba(11, 116, 209, .22);

    /* System stack only — no webfont is bundled and the offline/CSP setup
       here rules out fetching one (same reasoning as admin-ui.css). */
    --auth-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* ============================================================
   2. Reset & page shell
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.auth-body {
    min-height: 100vh;
    font-family: var(--auth-font);
    font-size: 15px;
    line-height: 1.55;
    color: var(--auth-text);
    background-color: var(--auth-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.auth-shell {
    display: flex;
    min-height: 100vh;
}

/* ============================================================
   3. Brand panel (left) + ambient animation
   ============================================================ */
.auth-brand {
    position: relative;
    flex: 1 1 52%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 56px;
    overflow: hidden;
    color: #fff;
    background: var(--auth-brand-grad);
}

/* Super console: the same shell, deliberately darker, so an operator can tell
   the platform console apart from a tenant sign-in at a glance. */
.auth-brand--super,
.auth-mobile-brand--super {
    --auth-brand-grad: linear-gradient(140deg, #0a1220 0%, #14324f 48%, #0b74d1 100%);
}

/* Faint dot grid so the gradient does not read as a flat wash. */
.auth-brand::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .5;
    pointer-events: none;
}

/* Blurred colour orbs drifting behind the copy. */
.auth-brand__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
    pointer-events: none;
    animation: auth-drift 18s ease-in-out infinite;
}

.auth-brand__orb--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -110px;
    background: rgba(6, 182, 212, .75);
}

.auth-brand__orb--2 {
    width: 340px;
    height: 340px;
    bottom: -110px;
    left: -90px;
    background: rgba(99, 179, 255, .55);
    animation-duration: 24s;
    animation-direction: reverse;
}

.auth-brand__orb--3 {
    width: 240px;
    height: 240px;
    top: 44%;
    right: 18%;
    background: rgba(255, 255, 255, .28);
    animation-duration: 30s;
    animation-delay: -6s;
}

@keyframes auth-drift {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(28px, -34px, 0) scale(1.08); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
}

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

.auth-brand__headline {
    margin: 0 0 14px;
    font-size: 2.35rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.02em;
    max-width: 12ch;
}

.auth-brand__headline em {
    font-style: normal;
    background: linear-gradient(90deg, #ffffff 0%, #b9f0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-brand__sub {
    margin: 0;
    max-width: 38ch;
    font-size: 1rem;
    color: rgba(255, 255, 255, .82);
}

.auth-features {
    list-style: none;
    margin: 36px 0 0;
    padding: 0;
}

.auth-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: .95rem;
    color: rgba(255, 255, 255, .92);
}

.auth-features li:last-child {
    margin-bottom: 0;
}

.auth-features i {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 16px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px);
}

.auth-brand__foot {
    position: relative;
    z-index: 1;
    font-size: .8rem;
    color: rgba(255, 255, 255, .62);
}

/* ============================================================
   4. Form panel (right)
   ============================================================ */
.auth-panel {
    flex: 1 1 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
}

/* Small pill above the card title, e.g. "Super console". */
.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    padding: 5px 12px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--auth-primary);
    background: var(--auth-primary-light);
    border: 1px solid rgba(11, 116, 209, .2);
    border-radius: 999px;
}

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

.auth-card__sub {
    margin: 0 0 28px;
    font-size: .94rem;
    color: var(--auth-muted);
}

.auth-card__foot {
    margin: 26px 0 0;
    text-align: center;
    font-size: .84rem;
    color: var(--auth-muted);
}

/* Shown only on mobile, where the brand panel collapses to a slim band. */
.auth-mobile-brand {
    display: none;
}

/* ============================================================
   5. Logo mark & wordmark
   ============================================================ */
.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: inherit;
}

.auth-logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .26);
}

.auth-logo__mark svg {
    width: 24px;
    height: 24px;
    display: block;
}

.auth-logo__text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

.auth-logo__text span {
    font-weight: 400;
    opacity: .78;
}

/* ============================================================
   6. Fields, floating labels, validation
   ============================================================ */
.auth-field {
    position: relative;
    margin-bottom: 18px;
}

/* Two fields side by side (first/last name on the setup form). */
.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
}

.auth-field__icon {
    position: absolute;
    top: 27px;
    left: 16px;
    font-size: 16px;
    line-height: 1;
    color: var(--auth-muted);
    pointer-events: none;
    transition: color .15s ease;
}

.auth-input {
    width: 100%;
    height: 58px;
    padding: 22px 16px 6px 46px;
    font-family: inherit;
    font-size: .97rem;
    color: var(--auth-text);
    background: var(--auth-surface);
    border: 1px solid var(--auth-border-strong);
    border-radius: var(--auth-radius);
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
    -webkit-appearance: none;
    appearance: none;
}

.auth-input--toggle {
    padding-right: 50px;
}

.auth-input:hover {
    border-color: #b6c2d2;
}

.auth-input:focus {
    border-color: var(--auth-primary);
    box-shadow: var(--auth-focus-ring);
}

.auth-input:focus ~ .auth-field__icon {
    color: var(--auth-primary);
}

/* Floating label. The input carries placeholder=" " so :placeholder-shown
   tells us whether it is empty. */
.auth-field__label {
    position: absolute;
    top: 18px;
    left: 46px;
    font-size: .95rem;
    color: var(--auth-muted);
    pointer-events: none;
    transform-origin: left top;
    transition: transform .15s ease, color .15s ease;
}

.auth-input:focus + .auth-field__label,
.auth-input:not(:placeholder-shown) + .auth-field__label,
.auth-input:-webkit-autofill + .auth-field__label {
    transform: translateY(-11px) scale(.78);
    color: var(--auth-primary);
}

.auth-input:not(:focus):not(:placeholder-shown) + .auth-field__label {
    color: var(--auth-muted);
}

/* Chrome paints autofilled inputs bright yellow; keep the card's palette. */
.auth-input:-webkit-autofill,
.auth-input:-webkit-autofill:hover,
.auth-input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--auth-text);
    -webkit-box-shadow: 0 0 0 40px var(--auth-surface) inset;
}

/* Password reveal. 44px square: the glyph is small but the target a thumb has
   to find is not, and it sits above the input so nothing can swallow the tap.
   touch-action keeps phones from holding the tap back to see whether it was a
   double-tap zoom. */
.auth-field__toggle {
    position: absolute;
    top: 7px;
    right: 4px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    color: var(--auth-muted);
    background: transparent;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: color .15s ease, background-color .15s ease;
}

/* Guarded: on a touch screen the hover state sticks after the tap, leaving the
   button looking pressed. */
@media (hover: hover) {
    .auth-field__toggle:hover {
        color: var(--auth-primary);
        background: rgba(11, 116, 209, .08);
    }
}

/* The only feedback a finger gets, since there is no hover to lean on. */
.auth-field__toggle:active {
    color: var(--auth-primary);
    background: rgba(11, 116, 209, .14);
}

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

/* themify ships no "eye-off" glyph, so the revealed state is drawn as the
   eye with a slash struck through it. */
.auth-field__toggle i {
    position: relative;
    display: inline-block;
}

.auth-field__toggle.is-on {
    color: var(--auth-primary);
}

.auth-field__toggle.is-on i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -1px;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    border-radius: 1px;
    transform: rotate(-45deg);
}

/* jQuery Validate messages are routed here by errorPlacement so they never
   land between the input and its floating label. */
.auth-field__error {
    min-height: 0;
    margin: 6px 2px 0;
    font-size: .8rem;
    color: var(--auth-danger);
}

.auth-field__error label.error {
    display: block;
    margin: 0;
    font-weight: 400;
}

.auth-input.error {
    border-color: var(--auth-danger);
}

.auth-input.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, .18);
}

/* ============================================================
   7. Options row: remember me / forgot password
   ============================================================ */
.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 4px 0 22px;
    font-size: .87rem;
}

.auth-check {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    color: var(--auth-text-soft);
    user-select: none;
}

.auth-check input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.auth-check__box {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border: 1px solid var(--auth-border-strong);
    border-radius: 5px;
    background: var(--auth-surface);
    transition: background-color .15s ease, border-color .15s ease;
}

.auth-check__box::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform .15s ease;
}

.auth-check input:checked + .auth-check__box {
    background: var(--auth-primary);
    border-color: var(--auth-primary);
}

.auth-check input:checked + .auth-check__box::after {
    transform: rotate(45deg) scale(1);
}

.auth-check input:focus-visible + .auth-check__box {
    box-shadow: var(--auth-focus-ring);
}

.auth-link {
    color: var(--auth-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color .15s ease;
}

.auth-link:hover,
.auth-link:focus {
    color: var(--auth-primary-dark);
    text-decoration: underline;
}

/* ============================================================
   8. Submit button & loading state
   ============================================================ */
.auth-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    padding: 0 20px;
    font-family: inherit;
    font-size: .97rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: #fff;
    background: linear-gradient(135deg, var(--auth-primary) 0%, var(--auth-accent) 100%);
    border: 0;
    border-radius: var(--auth-radius);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(11, 116, 209, .28);
    transition: transform .12s ease, box-shadow .18s ease, filter .18s ease;
}

.auth-btn:hover {
    filter: brightness(1.05);
    box-shadow: 0 12px 26px rgba(11, 116, 209, .34);
}

.auth-btn:active {
    transform: translateY(1px);
    box-shadow: 0 6px 14px rgba(11, 116, 209, .26);
}

.auth-btn:focus-visible {
    outline: none;
    box-shadow: var(--auth-focus-ring), 0 8px 20px rgba(11, 116, 209, .28);
}

.auth-btn[disabled] {
    cursor: not-allowed;
    filter: saturate(.7);
    box-shadow: none;
}

.auth-btn__spinner {
    display: none;
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: auth-spin .7s linear infinite;
}

.auth-btn.is-loading .auth-btn__spinner {
    display: block;
}

.auth-btn.is-loading .auth-btn__icon {
    display: none;
}

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

/* ============================================================
   9. Inline alert
   ============================================================ */
.auth-alert {
    display: none;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 14px;
    font-size: .87rem;
    border-radius: var(--auth-radius-sm);
    background: var(--auth-danger-light);
    border: 1px solid rgba(220, 53, 69, .28);
    color: #9b2430;
}

.auth-alert.is-visible {
    display: flex;
    animation: auth-shake .35s ease;
}

.auth-alert i {
    flex: 0 0 auto;
    margin-top: 2px;
    font-size: 14px;
}

@keyframes auth-shake {
    0%, 100% { transform: translateX(0); }
    25%      { transform: translateX(-5px); }
    75%      { transform: translateX(5px); }
}

/* ============================================================
   9a. Terminal state panel
   ------------------------------------------------------------
   Replaces the form once there is nothing left to type: the reset link has
   been sent, the password has been changed, or the link is dead. Centred
   rather than left-aligned like the form, because it is read, not filled in.
   ============================================================ */
.auth-done {
    text-align: center;
    padding: 6px 0 2px;
}

.auth-done__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    font-size: 25px;
    color: var(--auth-primary);
    background: var(--auth-primary-light);
    border-radius: 50%;
}

.auth-done__mark--ok {
    color: var(--auth-strong);
    background: rgba(33, 161, 121, .12);
}

/* Expired link: the panel is informative, not an error the user caused, so it
   stays warm rather than going full danger-red. */
.auth-done--bad .auth-done__mark {
    color: #b4622a;
    background: rgba(224, 160, 63, .16);
}

.auth-done__title {
    margin: 0 0 8px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--auth-text);
}

.auth-done__text {
    margin: 0 0 20px;
    font-size: .93rem;
    line-height: 1.6;
    color: var(--auth-text-soft);
}

/* The development-only reset link. Long and unbreakable, so it gets its own
   line and is allowed to wrap mid-token. */
.auth-done__link {
    display: block;
    margin-top: 12px;
    font-size: .82rem;
    word-break: break-all;
}

.auth-done__hint {
    margin: 18px 0 0;
    font-size: .85rem;
    color: var(--auth-muted);
}

/* .auth-btn is a <button> everywhere else; on this panel it is a link. */
a.auth-btn {
    text-decoration: none;
}

/* ============================================================
   9b. Password strength meter
   ------------------------------------------------------------
   Advisory only — the server enforces length and nothing else, and the meter
   never blocks submission. Hidden until there is something to score.
   ============================================================ */
.auth-meter {
    display: none;
    align-items: center;
    gap: 12px;
    margin: -6px 0 18px;
}

.auth-meter.is-visible {
    display: flex;
}

.auth-meter__track {
    flex: 1 1 auto;
    height: 5px;
    background: var(--auth-border);
    border-radius: 999px;
    overflow: hidden;
}

.auth-meter__fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: var(--auth-border-strong);
    transition: width .2s ease, background-color .2s ease;
}

.auth-meter__fill.is-weak   { width: 25%;  background: var(--auth-weak); }
.auth-meter__fill.is-fair   { width: 50%;  background: var(--auth-fair); }
.auth-meter__fill.is-good   { width: 75%;  background: var(--auth-good); }
.auth-meter__fill.is-strong { width: 100%; background: var(--auth-strong); }

.auth-meter__label {
    flex: 0 0 auto;
    min-width: 46px;
    font-size: .78rem;
    font-weight: 600;
    text-align: right;
    color: var(--auth-muted);
}

/* ============================================================
   10. Responsive: tablet & mobile
   ============================================================ */
@media (max-width: 1199px) {
    .auth-brand {
        padding: 40px 40px;
    }

    .auth-brand__headline {
        font-size: 2rem;
    }
}

/* Below this the split view stops earning its space: the brand panel becomes
   a slim gradient band and the form takes the rest of the screen. */
@media (max-width: 991px) {
    .auth-shell {
        flex-direction: column;
    }

    .auth-brand {
        display: none;
    }

    /* The band and the card are siblings of this panel, so it has to stack
       them - left as a row they sit side by side. */
    .auth-panel {
        flex: 1 1 auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0 0 40px;
        background: var(--auth-bg);
    }

    .auth-mobile-brand {
        position: relative;
        display: block;
        padding: 30px 24px 62px;
        overflow: hidden;
        text-align: center;
        color: #fff;
        background: var(--auth-brand-grad);
    }

    .auth-mobile-brand::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
        background-size: 20px 20px;
        opacity: .45;
        pointer-events: none;
    }

    .auth-mobile-brand .auth-logo {
        justify-content: center;
    }

    .auth-mobile-brand__tag {
        position: relative;
        z-index: 1;
        margin: 12px 0 0;
        font-size: .88rem;
        color: rgba(255, 255, 255, .84);
    }

    /* The card lifts over the band so the two read as one surface. The z-index
       is load-bearing: the band is positioned, so without it the band paints
       over the top of the card and clips its first line. */
    .auth-panel .auth-card {
        position: relative;
        z-index: 1;
        width: calc(100% - 40px);
        max-width: 460px;
        margin: -42px auto 0;
        padding: 28px 22px 26px;
        background: var(--auth-surface);
        border-radius: var(--auth-radius-lg);
        box-shadow: var(--auth-shadow-lg);
    }
}

@media (max-width: 575px) {
    body.auth-body {
        font-size: 14.5px;
    }

    .auth-panel {
        padding: 0 0 32px;
    }

    .auth-panel .auth-card {
        width: calc(100% - 28px);
    }

    .auth-mobile-brand {
        padding: 26px 18px 58px;
    }

    .auth-card__title {
        font-size: 1.45rem;
    }

    .auth-options {
        flex-wrap: wrap;
        row-gap: 10px;
    }

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

    /* Full-width tap targets on phones. */
    .auth-input {
        height: 56px;
        font-size: 16px; /* iOS zooms in on anything smaller */
    }

    /* Re-centred against the 56px field. */
    .auth-field__toggle {
        top: 6px;
    }

    .auth-field__label {
        font-size: .92rem;
    }
}

/* Tall phones: give the band more presence so the card is not stranded at the
   top of a mostly empty screen. */
@media (max-width: 991px) and (min-height: 720px) {
    .auth-mobile-brand {
        padding-top: 52px;
        padding-bottom: 78px;
    }
}

/* Short viewports (landscape phones): drop the tall band. */
@media (max-height: 560px) and (max-width: 991px) {
    .auth-mobile-brand {
        padding: 18px 18px 48px;
    }

    .auth-features {
        display: none;
    }
}

/* ============================================================
   11. Accessibility & motion
   ============================================================ */
.auth-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    .auth-brand__orb,
    .auth-alert.is-visible,
    .auth-btn__spinner {
        animation: none;
    }

    .auth-input,
    .auth-field__label,
    .auth-btn,
    .auth-meter__fill,
    .auth-check__box::after {
        transition: none;
    }
}
