/* Auth: cool indigo split + module slideshow. Accent from --auth-accent. */

.auth-body {
    --auth-sans: Poppins, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
    --auth-display: Poppins, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
    margin: 0;
    min-height: 100vh;
    background: #eef2ff;
    color: #0f172a;
    font-family: var(--auth-sans);
    font-feature-settings: "kern" 1, "liga" 1;
    letter-spacing: -0.011em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.auth-shell {
    --auth-paper: #eef2ff;
    --auth-ink: #0f172a;
    --auth-muted: #64748b;
    --auth-line: rgba(15, 23, 42, 0.12);
    --auth-card: #ffffff;
    --auth-side: #0b1220;
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "panel" "showcase";
    background: var(--auth-paper);
    color: var(--auth-ink);
    transition: opacity 0.22s ease;
}

.auth-shell.auth-page-leave {
    opacity: 0.02;
}

@media (min-width: 1024px) {
    .auth-shell {
        grid-template-columns: minmax(0, 1.05fr) minmax(28rem, 0.95fr);
        grid-template-areas: "showcase panel";
    }
}

.auth-showcase {
    grid-area: showcase;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    padding: 1.5rem 1.35rem 1.85rem;
    color: #e8eefc;
    background: var(--auth-side);
}

@media (min-width: 640px) {
    .auth-showcase {
        padding: 2.4rem 3rem;
    }
}

@media (min-width: 1024px) {
    .auth-showcase {
        padding: 3.25rem 4rem;
        min-height: 100vh;
    }
}

.auth-showcase.theme-midnight { --auth-side: #0b1220; }
.auth-showcase.theme-graphite { --auth-side: #1e293b; }
.auth-showcase.theme-ocean { --auth-side: #0c1a2e; }
.auth-showcase.theme-midnight,
.auth-showcase.theme-graphite,
.auth-showcase.theme-ocean {
    background: var(--auth-side);
}

.auth-showcase::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 12% 8%, color-mix(in srgb, var(--auth-accent) 34%, transparent), transparent 58%),
        radial-gradient(ellipse 50% 40% at 92% 88%, rgba(99, 102, 241, 0.22), transparent 55%);
}

.auth-showcase.gradient-ember::before {
    background:
        radial-gradient(ellipse 70% 50% at 10% 6%, rgba(249, 115, 22, 0.28), transparent 56%),
        radial-gradient(ellipse 50% 40% at 94% 90%, rgba(99, 102, 241, 0.2), transparent 52%);
}

.auth-showcase.gradient-neon::before {
    background:
        radial-gradient(ellipse 70% 50% at 10% 0%, rgba(34, 211, 238, 0.22), transparent 56%),
        radial-gradient(ellipse 50% 40% at 90% 92%, rgba(99, 102, 241, 0.24), transparent 50%);
}

.auth-showcase-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.auth-brand-mark {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: color-mix(in srgb, var(--auth-accent) 22%, transparent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.auth-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-brand-name {
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.auth-lede {
    margin: 1.15rem 0 0;
    max-width: 28rem;
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

.auth-slides {
    margin-top: 1.65rem;
}

.auth-slides-stage {
    position: relative;
    overflow: hidden;
    min-height: 23.25rem;
}

.auth-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    opacity: 0;
    transform: translateX(48%);
    pointer-events: none;
    z-index: 0;
}

.auth-slide.is-from-left { transform: translateX(-48%); }
.auth-slide.is-from-right { transform: translateX(48%); }

.auth-slide.is-active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    z-index: 2;
    transition: opacity 0.45s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-slide.is-active.is-from-left,
.auth-slide.is-active.is-from-right {
    opacity: 0;
    transition: none;
}

.auth-slide.is-active.is-from-left { transform: translateX(-48%); }
.auth-slide.is-active.is-from-right { transform: translateX(48%); }

.auth-slide.is-exit-left,
.auth-slide.is-exit-right {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.42s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-slide.is-exit-left { transform: translateX(-44%) scale(0.96); }
.auth-slide.is-exit-right { transform: translateX(44%) scale(0.96); }

.auth-slide-visual {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transform: perspective(900px) rotateX(4deg);
    transform-origin: center bottom;
}

.auth-slide.is-active .auth-slide-visual {
    animation: authVisualPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-slide-chrome {
    display: flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(226, 232, 240, 0.62);
    font-size: 0.68rem;
    font-weight: 600;
}

.auth-slide-chrome i {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.auth-slide-chrome i:nth-child(1) { background: #f87171; }
.auth-slide-chrome i:nth-child(2) { background: #fbbf24; }
.auth-slide-chrome i:nth-child(3) { background: #34d399; }

.auth-slide-chrome span {
    margin-left: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auth-slide-canvas {
    padding: 0.85rem 0.85rem 0.95rem;
    min-height: 7.6rem;
}

.auth-viz-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}

.auth-viz-channel {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.5rem;
    border-radius: 0.55rem;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-viz-channel img {
    width: 1.15rem;
    height: 1.15rem;
    object-fit: contain;
    background: #fff;
    border-radius: 0.28rem;
}

.auth-viz-channel span {
    color: #e2e8f0;
    font-size: 0.72rem;
    font-weight: 600;
}

.auth-viz-amazon {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.auth-viz-amazon img {
    width: 3.2rem;
    height: 3.2rem;
    object-fit: contain;
    background: #fff;
    border-radius: 0.7rem;
    padding: 0.35rem;
}

.auth-viz-amazon ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.38rem;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
}

.auth-viz-amazon li {
    padding: 0.38rem 0.5rem;
    border-radius: 0.45rem;
    background: rgba(15, 23, 42, 0.38);
    color: #e2e8f0;
    font-size: 0.72rem;
    font-weight: 600;
}

.auth-viz-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.auth-viz-steps li {
    position: relative;
    padding: 0.7rem 0.4rem 0.55rem;
    border-radius: 0.55rem;
    background: rgba(15, 23, 42, 0.35);
    color: rgba(226, 232, 240, 0.55);
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
}

.auth-viz-steps li.is-done { color: #86efac; }
.auth-viz-steps li.is-now {
    color: #c7d2fe;
    outline: 1px solid color-mix(in srgb, var(--auth-accent) 55%, transparent);
}

.auth-viz-doc {
    padding: 0.7rem 0.8rem 0.75rem;
    border-radius: 0.65rem;
    background: rgba(15, 23, 42, 0.38);
}

.auth-viz-doc strong {
    display: block;
    color: #f8fafc;
    font-size: 0.82rem;
    margin-bottom: 0.55rem;
}

.auth-viz-doc span {
    display: block;
    height: 0.38rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.16);
    margin-bottom: 0.32rem;
}

.auth-viz-doc span.is-short { width: 42%; }
.auth-viz-doc em {
    display: inline-block;
    margin-top: 0.35rem;
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 600;
    color: #86efac;
}

.auth-viz-swap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.55rem;
    align-items: center;
}

.auth-viz-swap div {
    padding: 1.05rem 0.5rem;
    border-radius: 0.7rem;
    background: rgba(15, 23, 42, 0.38);
    text-align: center;
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 600;
}

.auth-viz-swap-arrow {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--auth-accent) 40%, transparent);
    position: relative;
}

.auth-viz-swap-arrow::before {
    content: "↔";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #e0e7ff;
    font-size: 0.85rem;
}

.auth-viz-bars {
    display: grid;
    gap: 0.55rem;
}

.auth-viz-bars div {
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    gap: 0.5rem;
    align-items: center;
}

.auth-viz-bars span {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.7rem;
}

.auth-viz-bars b {
    display: block;
    height: 0.55rem;
    width: var(--w);
    border-radius: 99px;
    background: linear-gradient(90deg, var(--auth-accent), #818cf8);
}

.auth-viz-bars p {
    margin: 0.15rem 0 0;
    color: rgba(199, 210, 254, 0.8);
    font-size: 0.68rem;
}

.auth-viz-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
    height: 5.6rem;
    padding: 0 0.2rem;
}

.auth-viz-chart i {
    flex: 1;
    height: var(--h);
    border-radius: 0.35rem 0.35rem 0.15rem 0.15rem;
    background: linear-gradient(180deg, #a5b4fc, var(--auth-accent));
    font-style: normal;
}

.auth-viz-ai p,
.auth-viz-ai span {
    display: block;
}

.auth-viz-ai span {
    color: #c7d2fe;
    font-size: 0.68rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.auth-viz-ai p {
    height: 0.38rem;
    margin: 0 0 0.32rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.16);
}

.auth-viz-ai p.is-short { width: 55%; }
.auth-viz-ai i {
    display: block;
    margin-top: 0.45rem;
    width: 1.4rem;
    height: 0.28rem;
    border-radius: 99px;
    background: var(--auth-accent);
    animation: authCaret 0.9s steps(1) infinite;
}

.auth-viz-xml {
    display: grid;
    gap: 0.28rem;
    font-family: ui-monospace, Consolas, monospace;
}

.auth-viz-xml code {
    display: block;
    padding: 0.28rem 0.5rem;
    border-radius: 0.4rem;
    background: rgba(15, 23, 42, 0.45);
    color: #c4b5fd;
    font-size: 0.72rem;
}

.auth-viz-people {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
}

.auth-viz-people div {
    display: grid;
    justify-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.3rem;
    border-radius: 0.65rem;
    background: rgba(15, 23, 42, 0.35);
}

.auth-viz-people b {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--auth-accent) 40%, #1e1b4b);
    color: #eef2ff;
    font-size: 0.72rem;
}

.auth-viz-people span {
    color: #cbd5e1;
    font-size: 0.68rem;
    font-weight: 600;
}

.auth-slide-meta {
    min-height: 6.4rem;
}

.auth-slide-kicker {
    margin: 0 0 0.35rem;
    color: color-mix(in srgb, var(--auth-accent) 55%, #c7d2fe);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.auth-slide h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #f8fafc;
}

.auth-slide-copy {
    margin: 0.55rem 0 0;
    max-width: 28rem;
    color: rgba(203, 213, 225, 0.88);
    font-size: 0.88rem;
    line-height: 1.55;
}

.auth-slide-progress {
    height: 0.22rem;
    margin: 1.05rem 0 0.7rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.auth-slide-progress span {
    display: block;
    height: 100%;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--auth-accent);
}

.auth-slide-progress span.is-running {
    animation: authSlideProgress 5.6s linear forwards;
}

.auth-slide-progress span.is-paused {
    animation-play-state: paused;
}

.auth-slide-nav {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.auth-slide-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.auth-slide-btn svg {
    width: 1rem;
    height: 1rem;
}

.auth-slide-btn:hover,
.auth-slide-btn:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.auth-slide-dots {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    flex: 1;
}

.auth-slide-dot {
    width: 0.42rem;
    height: 0.42rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
}

.auth-slide-dot.is-active {
    width: 1.15rem;
    background: var(--auth-accent);
}

.auth-panel {
    grid-area: panel;
    display: flex;
    align-items: safe center;
    justify-content: center;
    overflow-y: auto;
    padding: 1.4rem 1.1rem 2rem;
    background: var(--auth-paper);
}

@media (min-width: 640px) {
    .auth-panel {
        padding: 2.4rem;
    }
}

.auth-card {
    width: 100%;
    max-width: 26.5rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: var(--auth-card);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
    padding: 1.45rem 1.3rem 1.4rem;
}

@media (min-width: 640px) {
    .auth-card {
        padding: 1.9rem 1.85rem 1.7rem;
    }
}

.auth-card-brand {
    display: none;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
    text-decoration: none;
    color: var(--auth-ink);
}

.auth-card-brand .auth-brand-mark {
    border-color: var(--auth-line);
    background: #eef2ff;
    color: var(--auth-ink);
}

.auth-card-brand .auth-brand-name {
    color: var(--auth-ink);
}

.auth-card-head {
    margin-bottom: 0.35rem;
}

.auth-heading h1 {
    margin: 0;
    font-weight: 600;
    font-size: 1.7rem;
    letter-spacing: -0.03em;
    color: var(--auth-ink);
    line-height: 1.2;
}

.auth-heading p {
    margin: 0.4rem 0 0;
    color: var(--auth-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.auth-field {
    margin-top: 1rem;
}

.auth-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.38rem;
}

.auth-input {
    width: 100%;
    height: 2.9rem;
    border-radius: 0.7rem;
    border: 1px solid var(--auth-line);
    background: #fff;
    padding: 0 0.9rem;
    color: var(--auth-ink);
    font-family: inherit;
    font-size: 0.94rem;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.auth-input::placeholder {
    color: #94a3b8;
}

.auth-input:hover {
    border-color: rgba(15, 23, 42, 0.22);
}

.auth-input:focus {
    outline: none;
    border-color: color-mix(in srgb, var(--auth-accent) 70%, #94a3b8);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--auth-accent) 18%, transparent);
}

.auth-password-wrap {
    position: relative;
}

.auth-password-wrap .auth-input {
    padding-right: 2.75rem;
}

.auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 0.3rem;
    transform: translateY(-50%);
    width: 2.15rem;
    height: 2.15rem;
    border: 0;
    border-radius: 0.45rem;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-password-toggle:hover,
.auth-password-toggle:focus-visible {
    color: var(--auth-ink);
    background: #f1f5f9;
    outline: none;
}

.auth-password-toggle svg {
    width: 1.05rem;
    height: 1.05rem;
}

.auth-error {
    margin-top: 0.38rem;
    color: #be123c;
    font-size: 0.78rem;
    border: 1px solid rgba(190, 18, 60, 0.14);
    background: #fff1f2;
    border-radius: 0.5rem;
    padding: 0.38rem 0.55rem;
}

.auth-row {
    margin-top: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.auth-check {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    color: #475569;
    font-size: 0.84rem;
    cursor: pointer;
}

.auth-check input[type="checkbox"] {
    appearance: none;
    width: 1.02rem;
    height: 1.02rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(15, 23, 42, 0.28);
    background: #fff;
    display: inline-grid;
    place-content: center;
}

.auth-check input[type="checkbox"]::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    transform: scale(0);
    clip-path: polygon(14% 44%, 0 60%, 44% 100%, 100% 19%, 84% 4%, 43% 64%);
    background: #fff;
}

.auth-check input[type="checkbox"]:checked {
    border-color: var(--auth-accent);
    background: var(--auth-accent);
}

.auth-check input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.auth-link {
    color: #4338ca;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-submit {
    margin-top: 1.15rem;
    width: 100%;
    height: 2.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.7rem;
    border: 0;
    background: var(--auth-accent);
    color: #fff;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    box-shadow: 0 10px 22px color-mix(in srgb, var(--auth-accent) 32%, transparent);
    transition: filter 0.16s ease, transform 0.16s ease;
}

.auth-submit:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.auth-submit:active {
    transform: translateY(0);
}

.auth-submit[disabled] {
    opacity: 0.78;
    cursor: wait;
    transform: none;
}

.auth-submit-spinner {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-top-color: #fff;
    animation: authSpin 0.85s linear infinite;
    display: none;
}

.auth-submit.is-loading .auth-submit-spinner {
    display: inline-block;
}

.auth-secondary {
    margin-top: 0.65rem;
    width: 100%;
    height: 2.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.7rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: transparent;
    color: var(--auth-ink);
    font-weight: 600;
    font-size: 0.84rem;
    text-decoration: none;
}

.auth-secondary:hover {
    background: #f8fafc;
}

.auth-status {
    margin-top: 0.95rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(21, 128, 61, 0.16);
    background: #f0fdf4;
    color: #166534;
    padding: 0.55rem 0.72rem;
    font-size: 0.82rem;
}

.auth-switch {
    margin-top: 1.1rem;
    text-align: center;
}

.auth-switch p {
    margin: 0;
    color: var(--auth-muted);
    font-size: 0.84rem;
}

.auth-switch .auth-link {
    margin-top: 0.35rem;
    display: inline-flex;
}

.auth-legal {
    margin: 0.8rem 0 0;
    text-align: center;
    color: var(--auth-muted);
    font-size: 0.74rem;
    line-height: 1.55;
}

.auth-trust-line {
    margin: 1rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #94a3b8;
    font-size: 0.72rem;
}

.auth-trust-line svg {
    width: 0.82rem;
    height: 0.82rem;
    flex: 0 0 auto;
}

@media (max-width: 1023px) {
    .auth-card-brand {
        display: inline-flex;
    }

    .auth-slides-stage {
        min-height: 21.5rem;
    }

    .auth-heading h1 {
        font-size: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .auth-shell,
    .auth-slide,
    .auth-slide.is-active,
    .auth-slide.is-exit-left,
    .auth-slide.is-exit-right,
    .auth-slide-visual,
    .auth-submit,
    .auth-submit-spinner,
    .auth-slide-progress span,
    .auth-viz-ai i {
        animation: none !important;
        transition: none !important;
    }

    .auth-slide,
    .auth-slide.is-from-left,
    .auth-slide.is-from-right,
    .auth-slide.is-exit-left,
    .auth-slide.is-exit-right {
        transform: none;
    }
}

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

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

@keyframes authVisualPop {
    from { opacity: 0.55; transform: perspective(900px) rotateX(10deg) translateY(12px); }
    to { opacity: 1; transform: perspective(900px) rotateX(4deg) translateY(0); }
}

@keyframes authCaret {
    0%, 45% { opacity: 1; }
    55%, 100% { opacity: 0; }
}
