/* Shared auth shell: login + forgot-password split-card chrome */

:root {
    --da-navy: #0b1a2e;
    --da-navy-mid: #12243c;
    --da-blue-deep: #005696;
    --da-blue: #38b4e5;
    --da-blue-bright: #46b2e0;
    --da-slate: #64748b;
    --da-mist: #e8eef5;
    --da-ink: #0f172a;
    /* Light mode — matches FAST --bg-main / --bg-body */
    --auth-page-bg: #f8fafc;
    --auth-page-accent: #eef4f9;
    --auth-page-glow-a: rgba(56, 180, 229, 0.16);
    --auth-page-glow-b: rgba(0, 86, 150, 0.08);
    --auth-page-stripe: rgba(15, 80, 120, 0.045);
    --auth-card-shadow: 0 22px 50px -16px rgba(15, 23, 42, 0.18);
    --auth-card-border: rgba(15, 23, 42, 0.06);
    --auth-form-bg: #ffffff;
    --auth-form-text: #0f172a;
    --auth-form-muted: #64748b;
    --auth-form-border: #d4dde8;
    --auth-form-input-line: #b8c5d6;
    --auth-form-focus: rgba(56, 180, 229, 0.35);
    --auth-btn-bg: #1d9bf0;
    --auth-btn-bg-hover: #1788d2;
    --auth-btn-bg-active: #1375b6;
    --auth-link: #0ea5e9;
    --auth-link-hover: #0284c7;
    --auth-radius: 14px;
    --auth-card-max: 920px;
    --auth-art-bg: #0b1a2e;
    --fast-wordmark-ink: #0c4a6e;
    --fast-wordmark-tag-bg: #ffffff;
    --fast-wordmark-sep: rgba(12, 74, 110, 0.15);
    --auth-intro-ms: 1200ms;
}

/* Dark mode — current navy atmosphere */
html.theme-dark {
    --auth-page-bg: #0e1c30;
    --auth-page-accent: #163050;
    --auth-page-glow-a: rgba(56, 180, 229, 0.14);
    --auth-page-glow-b: rgba(0, 86, 150, 0.22);
    --auth-page-stripe: rgba(148, 163, 184, 0.04);
    --auth-card-shadow: 0 32px 70px -16px rgba(0, 0, 0, 0.65);
    --auth-card-border: transparent;
    --auth-form-bg: #ffffff;
    --auth-form-text: #0f172a;
    --auth-form-muted: #64748b;
    --auth-form-border: #d4dde8;
    --auth-link: #0ea5e9;
    --auth-link-hover: #0284c7;
    --auth-art-bg: #0b1a2e;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

html {
    background-color: var(--auth-page-bg);
}

body.auth-body {
    margin: 0;
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--auth-form-text);
    background: transparent;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    -webkit-font-smoothing: antialiased;
}

/* Page atmosphere */
.auth-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 70% at 15% 20%, var(--auth-page-glow-a) 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 90% 85%, var(--auth-page-glow-b) 0%, transparent 50%),
        linear-gradient(160deg, var(--auth-page-bg) 0%, var(--auth-page-accent) 55%, var(--auth-page-bg) 100%);
}

.auth-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -14deg,
        transparent,
        transparent 10px,
        var(--auth-page-stripe) 10px,
        var(--auth-page-stripe) 11px
    );
    opacity: 0.9;
}

/* Split card shell */
.auth-shell {
    position: relative;
    z-index: 1;
    width: min(100%, var(--auth-card-max));
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    border-radius: var(--auth-radius);
    box-shadow: var(--auth-card-shadow);
}

.auth-shell.is-ready {
    animation: authShellIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.auth-shell.is-instant {
    opacity: 1;
    transform: none;
}

@keyframes authShellIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.auth-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    border-radius: var(--auth-radius);
    overflow: hidden;
    isolation: isolate;
    /* clip-path catches subpixel / transform spill past rounded corners */
    clip-path: inset(0 round var(--auth-radius));
    -webkit-clip-path: inset(0 round var(--auth-radius));
    /* shadow lives on .auth-shell so clip-path does not hide it */
    box-shadow: none;
    /* panels paint their own backgrounds — avoids white corner bleed */
    background: transparent;
    border: 1px solid var(--auth-card-border);
}

/* Left: geometric brand panel */
.auth-art {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    padding: 2.25rem 1.75rem;
    background: var(--auth-art-bg);
    overflow: hidden;
    color: #fff;
    border-radius: var(--auth-radius) 0 0 var(--auth-radius);
    min-width: 0;
}

.auth-geo {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 0;
    opacity: 0.92;
}

.auth-geo-cell {
    position: relative;
    overflow: hidden;
    background: #12243c;
}

.auth-geo-cell::before,
.auth-geo-cell::after {
    content: "";
    position: absolute;
    inset: 0;
}

/* Bauhaus-style tiles in DA blues */
.auth-geo-cell[data-shape="solid-a"] { background: #005696; }
.auth-geo-cell[data-shape="solid-b"] { background: #38b4e5; }
.auth-geo-cell[data-shape="solid-c"] { background: #1a3354; }
.auth-geo-cell[data-shape="solid-d"] { background: #0f2744; }

.auth-geo-cell[data-shape="qtr-tl"] {
    background: #1a3354;
}
.auth-geo-cell[data-shape="qtr-tl"]::before {
    background: radial-gradient(circle at 100% 100%, transparent 69%, #46b2e0 70%);
}
.auth-geo-cell[data-shape="qtr-tr"] {
    background: #0f2744;
}
.auth-geo-cell[data-shape="qtr-tr"]::before {
    background: radial-gradient(circle at 0% 100%, transparent 69%, #005696 70%);
}
.auth-geo-cell[data-shape="qtr-bl"] {
    background: #163050;
}
.auth-geo-cell[data-shape="qtr-bl"]::before {
    background: radial-gradient(circle at 100% 0%, transparent 69%, #38b4e5 70%);
}
.auth-geo-cell[data-shape="qtr-br"] {
    background: #0b1a2e;
}
.auth-geo-cell[data-shape="qtr-br"]::before {
    background: radial-gradient(circle at 0% 0%, transparent 69%, #1e4a72 70%);
}

.auth-geo-cell[data-shape="half-h"] {
    background: #0f2744;
}
.auth-geo-cell[data-shape="half-h"]::before {
    inset: 50% 0 0 0;
    background: #38b4e5;
}
.auth-geo-cell[data-shape="half-v"] {
    background: #163050;
}
.auth-geo-cell[data-shape="half-v"]::before {
    inset: 0 0 0 50%;
    background: #005696;
}

.auth-geo-cell[data-shape="dots"] {
    background:
        radial-gradient(circle, #94a3b8 1.6px, transparent 1.8px) 0 0 / 33.33% 33.33%,
        #12243c;
}

.auth-geo-cell[data-shape="ring"] {
    background: #0f2744;
}
.auth-geo-cell[data-shape="ring"]::before {
    inset: 18%;
    border-radius: 50%;
    border: 3px solid #46b2e0;
    background: transparent;
}

.auth-geo-cell[data-shape="slash"] {
    background: #1a3354;
}
.auth-geo-cell[data-shape="slash"]::before {
    background: linear-gradient(135deg, transparent 46%, #38b4e5 46%, #38b4e5 54%, transparent 54%);
}

.auth-art-brand {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    text-align: center;
    max-width: 280px;
}

.auth-da-logo {
    width: min(100%, 220px);
    height: auto;
    display: block;
    border-radius: 4px;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
    opacity: 0;
    transform: translateY(10px);
}

.auth-shell.is-ready .auth-da-logo,
.auth-shell.is-instant .auth-da-logo {
    animation: authLogoIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.auth-shell.is-instant .auth-da-logo {
    animation: none;
    opacity: 1;
    transform: none;
}

@keyframes authLogoIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-art-divider {
    width: 48px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #46b2e0, transparent);
    opacity: 0;
}

.auth-shell.is-ready .auth-art-divider {
    animation: authFadeIn 0.4s ease 0.35s forwards;
}

.auth-shell.is-instant .auth-art-divider {
    opacity: 1;
}

@keyframes authFadeIn {
    to { opacity: 1; }
}

/* F.A.S.T wordmark */
.fast-wordmark {
    display: flex;
    justify-content: center;
}

.fast-wordmark-tag {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    background: var(--fast-wordmark-tag-bg);
    padding: 0.42rem 1.05rem 0.42rem 0.5rem;
    clip-path: polygon(
        0 0,
        calc(100% - 16px) 0,
        100% 50%,
        calc(100% - 16px) 100%,
        0 100%
    );
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
    opacity: 0;
    transform: translateX(12px) scale(0.94);
}

.auth-shell.is-ready .fast-wordmark-tag {
    animation: fastTagReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.auth-shell.is-instant .fast-wordmark-tag {
    opacity: 1;
    transform: none;
}

@keyframes fastTagReveal {
    70% {
        transform: translateX(-2px) scale(1.01);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.fast-wordmark-dax {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 0.45rem;
    margin-right: 0.5rem;
    border-right: 1px solid var(--fast-wordmark-sep);
    font-family: "Space Grotesk", "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.48rem;
    line-height: 1.05;
    letter-spacing: 0.05em;
    color: var(--fast-wordmark-ink);
    text-transform: uppercase;
}

.fast-wordmark-dax span {
    display: block;
    opacity: 0;
}

.auth-shell.is-ready .fast-wordmark-dax span {
    animation: fastDaxGlyph 0.35s ease forwards;
}
.auth-shell.is-ready .fast-wordmark-dax span:nth-child(1) { animation-delay: 0.55s; }
.auth-shell.is-ready .fast-wordmark-dax span:nth-child(2) { animation-delay: 0.62s; }
.auth-shell.is-ready .fast-wordmark-dax span:nth-child(3) { animation-delay: 0.69s; }

.auth-shell.is-instant .fast-wordmark-dax span {
    opacity: 1;
}

@keyframes fastDaxGlyph {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fast-wordmark-fast {
    font-family: "Space Grotesk", "DM Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 3.5vw, 1.55rem);
    letter-spacing: 0.04em;
    color: var(--fast-wordmark-ink);
    line-height: 1;
    padding-right: 0.1rem;
}

.fast-wordmark-fast .fast-glyph {
    display: inline-block;
    opacity: 0;
}

.auth-shell.is-ready .fast-wordmark-fast .fast-glyph {
    animation: fastLetterReveal 0.4s ease forwards;
}
.auth-shell.is-ready .fast-wordmark-fast .fast-glyph:nth-child(1) { animation-delay: 0.72s; }
.auth-shell.is-ready .fast-wordmark-fast .fast-glyph:nth-child(2) { animation-delay: 0.76s; }
.auth-shell.is-ready .fast-wordmark-fast .fast-glyph:nth-child(3) { animation-delay: 0.8s; }
.auth-shell.is-ready .fast-wordmark-fast .fast-glyph:nth-child(4) { animation-delay: 0.84s; }
.auth-shell.is-ready .fast-wordmark-fast .fast-glyph:nth-child(5) { animation-delay: 0.88s; }
.auth-shell.is-ready .fast-wordmark-fast .fast-glyph:nth-child(6) { animation-delay: 0.92s; }
.auth-shell.is-ready .fast-wordmark-fast .fast-glyph:nth-child(7) { animation-delay: 0.96s; }

.auth-shell.is-instant .fast-wordmark-fast .fast-glyph {
    opacity: 1;
}

@keyframes fastLetterReveal {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Right: form panel */
.auth-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.35rem 2.5rem 2.15rem;
    background: var(--auth-form-bg);
    color: var(--auth-form-text);
    opacity: 0;
    transform: translateX(16px);
    border-radius: 0 var(--auth-radius) var(--auth-radius) 0;
    min-width: 0;
    overflow: hidden;
}

.auth-shell.is-ready .auth-form {
    animation: authFormIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.auth-shell.is-instant .auth-form {
    opacity: 1;
    transform: none;
}

@keyframes authFormIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.auth-form-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--da-blue-deep);
    margin: 0 0 0.35rem;
}

.auth-form-title {
    font-family: "Space Grotesk", "DM Sans", sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--auth-form-text);
    margin: 0 0 0.35rem;
    line-height: 1.15;
}

.auth-form-sub {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--da-blue-bright);
    margin: 0 0 1.55rem;
}

.auth-fields {
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

.auth-field label,
.login-field label,
.fp-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--auth-form-muted);
    margin-bottom: 0.4rem;
}

.auth-field input,
.login-field input,
.fp-field input {
    width: 100%;
    height: 2.65rem;
    padding: 0 0.15rem;
    border: none;
    border-bottom: 1.5px solid var(--auth-form-input-line);
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--auth-form-text);
    background: transparent;
    caret-color: var(--auth-form-text);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.auth-field input::placeholder,
.login-field input::placeholder,
.fp-field input::placeholder {
    color: var(--auth-form-muted);
    font-weight: 400;
    opacity: 0.75;
}

.auth-field input:focus,
.login-field input:focus,
.fp-field input:focus {
    outline: none;
    border-bottom-color: var(--da-blue);
    box-shadow: 0 3px 0 -1px var(--auth-form-focus);
}

.auth-field input:-webkit-autofill,
.login-field input:-webkit-autofill,
.fp-field input:-webkit-autofill,
.auth-field input:-webkit-autofill:hover,
.login-field input:-webkit-autofill:hover,
.fp-field input:-webkit-autofill:hover,
.auth-field input:-webkit-autofill:focus,
.login-field input:-webkit-autofill:focus,
.fp-field input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--auth-form-text);
    caret-color: var(--auth-form-text);
    transition: background-color 9999s ease-out 0s;
    -webkit-box-shadow: 0 0 0 1000px var(--auth-form-bg) inset;
    box-shadow: 0 0 0 1000px var(--auth-form-bg) inset;
}

.login-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-wrap input {
    padding-right: 2.5rem;
}

.login-password-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    background: transparent;
    color: var(--auth-form-muted);
    cursor: pointer;
    display: grid;
    place-items: center;
    border-radius: 6px;
    padding: 0;
}

.login-password-toggle:hover {
    color: var(--da-blue-deep);
}

.login-password-toggle svg {
    width: 1.15rem;
    height: 1.15rem;
}

.login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.login-remember {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--auth-form-muted);
    cursor: pointer;
    user-select: none;
}

.login-remember input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--da-blue);
    cursor: pointer;
}

.login-link,
.fp-back {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--auth-link);
    text-decoration: none;
}

.login-link:hover,
.fp-back:hover {
    color: var(--auth-link-hover);
}

.fp-back {
    display: inline-flex;
    align-items: center;
    margin-top: 0.15rem;
}

.login-actions {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.login-btn-primary,
.fp-btn {
    width: 100%;
    height: 2.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--auth-btn-bg);
    cursor: pointer;
    transition: background 0.15s ease;
}

.login-btn-primary:hover,
.fp-btn:hover:not(:disabled) {
    background: var(--auth-btn-bg-hover);
}

.login-btn-primary:active,
.fp-btn:active:not(:disabled) {
    background: var(--auth-btn-bg-active);
}

.login-btn-primary:focus-visible,
.fp-btn:focus-visible {
    outline: 2px solid var(--auth-form-focus);
    outline-offset: 2px;
}

.fp-btn:disabled {
    opacity: 0.55;
    cursor: default;
}

.fp-btn-secondary {
    background: transparent;
    color: var(--auth-link);
    border: 1px solid var(--auth-form-border);
    text-transform: none;
    letter-spacing: 0.01em;
}

.fp-btn-secondary:hover:not(:disabled) {
    background: rgba(56, 180, 229, 0.08);
    color: var(--auth-link-hover);
}

.login-feedback,
.fp-feedback {
    min-height: 1.1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #dc2626;
    text-align: center;
}

.login-feedback--ok,
.fp-feedback--ok {
    color: #0c4a6e;
}

/* Forgot-password steps */
.fp-step {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.fp-step.active {
    display: flex;
}

.fp-hint {
    font-size: 0.82rem;
    color: var(--auth-form-muted);
    line-height: 1.45;
    text-align: left;
}

.fp-code-input {
    letter-spacing: 0.35em;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.fp-email-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(56, 180, 229, 0.12);
    color: var(--auth-form-text);
    font-size: 0.8125rem;
    font-weight: 600;
}

.fp-actions-row {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.fp-btn.fp-btn--as-link {
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Intro splash (full-screen logos before card) */
.auth-intro {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    place-items: center;
    background: var(--auth-page-bg);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.auth-intro.is-done {
    opacity: 0;
    visibility: hidden;
}

.auth-intro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    padding: 1.5rem;
}

.auth-intro .auth-da-logo {
    width: min(72vw, 260px);
    opacity: 0;
    animation: authLogoIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.auth-intro .fast-wordmark-tag {
    opacity: 0;
    animation: fastTagReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.auth-intro .fast-wordmark-dax span {
    opacity: 0;
    animation: fastDaxGlyph 0.35s ease forwards;
}
.auth-intro .fast-wordmark-dax span:nth-child(1) { animation-delay: 0.55s; }
.auth-intro .fast-wordmark-dax span:nth-child(2) { animation-delay: 0.62s; }
.auth-intro .fast-wordmark-dax span:nth-child(3) { animation-delay: 0.69s; }

.auth-intro .fast-wordmark-fast .fast-glyph {
    opacity: 0;
    animation: fastLetterReveal 0.4s ease forwards;
}
.auth-intro .fast-wordmark-fast .fast-glyph:nth-child(1) { animation-delay: 0.72s; }
.auth-intro .fast-wordmark-fast .fast-glyph:nth-child(2) { animation-delay: 0.76s; }
.auth-intro .fast-wordmark-fast .fast-glyph:nth-child(3) { animation-delay: 0.8s; }
.auth-intro .fast-wordmark-fast .fast-glyph:nth-child(4) { animation-delay: 0.84s; }
.auth-intro .fast-wordmark-fast .fast-glyph:nth-child(5) { animation-delay: 0.88s; }
.auth-intro .fast-wordmark-fast .fast-glyph:nth-child(6) { animation-delay: 0.92s; }
.auth-intro .fast-wordmark-fast .fast-glyph:nth-child(7) { animation-delay: 0.96s; }

.auth-intro.is-skip {
    display: none;
}

/* Responsive */
@media (max-width: 720px) {
    body.auth-body {
        padding: 1rem;
        align-items: stretch;
    }

    .auth-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .auth-art {
        min-height: 160px;
        padding: 1.35rem 1.25rem;
        gap: 0.85rem;
        border-radius: var(--auth-radius) var(--auth-radius) 0 0;
    }

    .auth-geo {
        opacity: 0.55;
    }

    .auth-da-logo {
        width: min(100%, 180px);
    }

    .auth-form {
        padding: 1.65rem 1.4rem 1.5rem;
        border-radius: 0 0 var(--auth-radius) var(--auth-radius);
    }

    .auth-form-sub {
        margin-bottom: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .auth-shell,
    .auth-shell.is-ready,
    .auth-da-logo,
    .auth-art-divider,
    .fast-wordmark-tag,
    .fast-wordmark-dax span,
    .fast-wordmark-fast .fast-glyph,
    .auth-form,
    .auth-intro .auth-da-logo,
    .auth-intro .fast-wordmark-tag,
    .auth-intro .fast-wordmark-dax span,
    .auth-intro .fast-wordmark-fast .fast-glyph {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .auth-intro {
        display: none;
    }
}
