.auth-login-page {
    --auth-bg: #080811;
    --auth-panel: rgba(17, 17, 35, 0.84);
    --auth-panel-strong: rgba(13, 13, 29, 0.9);
    --auth-line: rgba(238, 240, 255, 0.11);
    --auth-line-strong: rgba(124, 92, 255, 0.58);
    --auth-purple: #8c6cff;
    --auth-purple-deep: #6c48f2;
    --auth-cyan: #22d3ee;
    --auth-pink: #ff5c9d;
    --auth-text: #f4f3ff;
    --auth-muted: #a9acc8;
    --auth-muted-strong: #c4c6dc;
    --auth-danger: #ff86ab;
    --auth-success: #6ce9b0;
    --auth-radius: 28px;
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--auth-text);
    background:
        radial-gradient(circle at 18% 18%, rgba(91, 61, 196, 0.16), transparent 30rem),
        radial-gradient(circle at 88% 72%, rgba(12, 171, 196, 0.1), transparent 34rem),
        var(--auth-bg);
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.auth-login-page *,
.auth-login-page *::before,
.auth-login-page *::after {
    box-sizing: border-box;
}

.auth-login-page a {
    color: inherit;
}

.auth-login-page button,
.auth-login-page input {
    font: inherit;
}

.auth-login-page .auth-skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border: 1px solid var(--auth-cyan);
    border-radius: 10px;
    color: #071019;
    background: var(--auth-cyan);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.auth-login-page .auth-skip-link:focus {
    transform: translateY(0);
}

.auth-login-page .auth-scene,
.auth-login-page .auth-scene__canvas,
.auth-login-page .auth-scene__vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.auth-login-page .auth-scene {
    z-index: 0;
    overflow: hidden;
}

.auth-login-page .auth-scene__canvas {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 900ms ease;
}

.auth-login-page .auth-scene.is-ready .auth-scene__canvas {
    opacity: 1;
}

.auth-login-page .auth-scene__orb {
    position: absolute;
    width: min(48vw, 680px);
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.36;
    will-change: transform;
}

.auth-login-page .auth-scene__orb--purple {
    top: -24%;
    left: -13%;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.8), transparent 68%);
    animation: auth-orb-purple 18s ease-in-out infinite alternate;
}

.auth-login-page .auth-scene__orb--cyan {
    right: -18%;
    bottom: -30%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.6), transparent 68%);
    animation: auth-orb-cyan 22s ease-in-out infinite alternate;
}

.auth-login-page .auth-scene__grid {
    position: absolute;
    right: -14vw;
    bottom: -28vh;
    left: -14vw;
    height: 66vh;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(124, 92, 255, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.34) 1px, transparent 1px);
    background-size: 62px 48px;
    mask-image: linear-gradient(to bottom, transparent 2%, #000 62%);
    transform: perspective(420px) rotateX(62deg);
    transform-origin: center top;
    transition: opacity 700ms ease;
}

.auth-login-page .auth-scene.is-ready .auth-scene__grid {
    opacity: 0.045;
}

.auth-login-page .auth-scene__vignette {
    background:
        linear-gradient(90deg, rgba(8, 8, 17, 0.5), transparent 26%, transparent 74%, rgba(8, 8, 17, 0.48)),
        radial-gradient(ellipse at center, transparent 34%, rgba(8, 8, 17, 0.62) 100%);
}

.auth-login-page .auth-main {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 100svh;
    padding: clamp(24px, 4vw, 64px);
    place-items: center;
}

.auth-login-page .auth-shell {
    --auth-tilt-x: 0deg;
    --auth-tilt-y: 0deg;
    position: relative;
    display: grid;
    width: min(100%, 1180px);
    min-height: min(720px, calc(100svh - clamp(48px, 8vw, 128px)));
    overflow: hidden;
    border: 1px solid var(--auth-line);
    border-radius: var(--auth-radius);
    background: rgba(10, 10, 24, 0.16);
    box-shadow:
        0 44px 120px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(124, 92, 255, 0.05) inset,
        0 0 90px rgba(100, 66, 224, 0.1);
    grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
    isolation: isolate;
    transform: perspective(1400px) rotateX(var(--auth-tilt-x)) rotateY(var(--auth-tilt-y));
    transform-style: preserve-3d;
    transition: transform 150ms ease-out, border-color 220ms ease, box-shadow 220ms ease;
    animation: auth-shell-enter 760ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    will-change: transform;
}

.auth-login-page .auth-shell:hover {
    border-color: rgba(164, 146, 255, 0.24);
    box-shadow:
        0 48px 130px rgba(0, 0, 0, 0.54),
        0 0 0 1px rgba(124, 92, 255, 0.08) inset,
        0 0 110px rgba(100, 66, 224, 0.14);
}

.auth-login-page .auth-shell::before {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 11%;
    left: 11%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(178, 158, 255, 0.8), rgba(34, 211, 238, 0.72), transparent);
    content: "";
}

.auth-login-page .auth-shell__intro {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: clamp(34px, 4.2vw, 58px);
    overflow: hidden;
    border-right: 1px solid var(--auth-line);
    background:
        linear-gradient(145deg, rgba(124, 92, 255, 0.09), transparent 42%),
        linear-gradient(180deg, rgba(13, 13, 30, 0.1), rgba(11, 11, 25, 0.25));
}

.auth-login-page .auth-shell__intro::before,
.auth-login-page .auth-shell__intro::after {
    position: absolute;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.auth-login-page .auth-shell__intro::before {
    display: none;
    top: 26%;
    right: -42%;
    width: 490px;
    height: 490px;
    border: 1px solid rgba(124, 92, 255, 0.2);
    box-shadow:
        0 0 0 72px rgba(124, 92, 255, 0.025),
        0 0 0 144px rgba(34, 211, 238, 0.018);
}

.auth-login-page .auth-shell__intro::after {
    right: 56px;
    bottom: 104px;
    width: 8px;
    height: 8px;
    background: var(--auth-cyan);
    box-shadow: 0 0 26px 8px rgba(34, 211, 238, 0.34);
    animation: auth-signal 2.4s ease-in-out infinite;
}

.auth-login-page .auth-brand {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
    color: var(--auth-text);
    text-decoration: none;
}

.auth-login-page .auth-brand__mark {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 2px;
    overflow: hidden;
    border: 1px solid rgba(161, 139, 255, 0.36);
    border-radius: 14px;
    color: #d7ceff;
    background: linear-gradient(145deg, rgba(124, 92, 255, 0.28), rgba(34, 211, 238, 0.06));
    box-shadow: 0 12px 36px rgba(54, 32, 137, 0.35), 0 0 22px rgba(124, 92, 255, 0.16) inset;
    place-items: center;
}

.auth-login-page .auth-brand__avatar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 11px;
    object-fit: cover;
    object-position: center;
}

.auth-login-page .auth-brand__wordmark {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.auth-login-page .auth-brand__wordmark em {
    color: var(--auth-cyan);
    font-style: normal;
}

.auth-login-page .auth-intro-copy {
    position: relative;
    z-index: 1;
    margin: auto 0;
    padding: 60px 0;
}

.auth-login-page .auth-eyebrow,
.auth-login-page .auth-form-kicker {
    color: var(--auth-cyan);
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.auth-login-page .auth-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.auth-login-page .auth-eyebrow i {
    width: 19px;
    height: 1px;
    background: var(--auth-cyan);
    box-shadow: 0 0 8px var(--auth-cyan);
}

.auth-login-page .auth-intro-copy h1 {
    margin: 24px 0 20px;
    color: var(--auth-text);
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-shadow: 0 3px 22px rgba(4, 4, 13, 0.9);
}

.auth-login-page .auth-intro-copy h1 span {
    color: transparent;
    background: linear-gradient(90deg, #aa92ff, #62e9f8 80%);
    background-size: 180% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: auth-title-shift 7s ease-in-out infinite alternate;
}

.auth-login-page .auth-intro-copy p {
    max-width: 400px;
    margin: 0;
    color: var(--auth-muted);
    font-size: 15px;
    line-height: 1.8;
    text-shadow: 0 2px 14px rgba(4, 4, 13, 0.92);
}

.auth-login-page .auth-proof {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 15px;
}

.auth-login-page .auth-proof__item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.auth-login-page .auth-proof__item > svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: var(--auth-purple);
}

.auth-login-page .auth-proof__item span {
    display: grid;
    gap: 1px;
}

.auth-login-page .auth-proof__item strong {
    color: var(--auth-muted-strong);
    font-size: 12px;
    font-weight: 600;
}

.auth-login-page .auth-proof__item small {
    color: #777c9d;
    font-size: 10px;
}

.auth-login-page .auth-shell__form-panel {
    position: relative;
    display: grid;
    min-width: 0;
    padding: clamp(42px, 5.8vw, 78px);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.018), transparent 40%),
        var(--auth-panel);
    box-shadow: -28px 0 72px rgba(3, 3, 12, 0.18);
    place-items: center;
}

.auth-login-page .auth-shell__form-panel::before {
    position: absolute;
    top: -90px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(124, 92, 255, 0.08);
    filter: blur(45px);
    content: "";
}

.auth-login-page .auth-form-wrap {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
}

.auth-login-page .auth-form-header {
    margin-bottom: 30px;
}

.auth-login-page .auth-form-header h2 {
    margin: 9px 0 7px;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: clamp(34px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.auth-login-page .auth-form-header p {
    margin: 0;
    color: var(--auth-muted);
    font-size: 14px;
}

.auth-login-page .auth-messages:empty {
    display: none;
}

.auth-login-page .auth-alert {
    display: flex;
    margin: 0 0 22px;
    padding: 12px 14px;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid rgba(255, 134, 171, 0.25);
    border-radius: 12px;
    color: #ffd9e5;
    background: rgba(124, 31, 63, 0.22);
    font-size: 12px;
    line-height: 1.5;
}

.auth-login-page .auth-alert--success {
    border-color: rgba(108, 233, 176, 0.26);
    color: #d5ffeb;
    background: rgba(26, 111, 73, 0.18);
}

.auth-login-page .auth-alert--warning,
.auth-login-page .auth-alert--info {
    border-color: rgba(34, 211, 238, 0.24);
    color: #d7faff;
    background: rgba(22, 105, 119, 0.16);
}

.auth-login-page .auth-alert__icon {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 700;
    place-items: center;
}

.auth-login-page .auth-form {
    display: grid;
    gap: 21px;
}

.auth-login-page .auth-field {
    display: grid;
    gap: 8px;
}

.auth-login-page .auth-field > label {
    color: var(--auth-muted-strong);
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.auth-login-page .auth-control {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-login-page .auth-control__icon {
    position: absolute;
    z-index: 1;
    left: 17px;
    display: grid;
    width: 19px;
    height: 19px;
    color: #777b9b;
    pointer-events: none;
    place-items: center;
}

.auth-login-page .auth-control__icon svg,
.auth-login-page .auth-password-toggle svg,
.auth-login-page .auth-submit > svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.auth-login-page .auth-control input {
    width: 100%;
    height: 56px;
    min-width: 0;
    padding: 0 50px 0 50px;
    border: 1px solid rgba(238, 240, 255, 0.13);
    border-radius: 14px;
    outline: 0;
    color: var(--auth-text);
    background: rgba(7, 7, 18, 0.55);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025) inset;
    font-size: 15px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.auth-login-page .auth-control input::placeholder {
    color: #7d82a5;
    opacity: 1;
}

.auth-login-page .auth-control input:hover {
    border-color: rgba(238, 240, 255, 0.22);
}

.auth-login-page .auth-control input:focus-visible {
    border-color: var(--auth-purple);
    background: rgba(10, 9, 24, 0.78);
    box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.2), 0 0 28px rgba(92, 61, 207, 0.12);
}

.auth-login-page .auth-field--invalid .auth-control input {
    border-color: rgba(255, 92, 157, 0.7);
}

.auth-login-page .auth-field__error {
    color: var(--auth-danger);
    font-size: 11px;
    line-height: 1.5;
}

.auth-login-page .auth-password-toggle {
    position: absolute;
    z-index: 2;
    right: 5px;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 13px;
    border: 0;
    border-radius: 10px;
    color: #8589a7;
    background: transparent;
    cursor: pointer;
    place-items: center;
    transition: color 160ms ease, background 160ms ease;
}

.auth-login-page .auth-password-toggle:hover {
    color: var(--auth-cyan);
    background: rgba(34, 211, 238, 0.06);
}

.auth-login-page .auth-password-toggle:focus-visible,
.auth-login-page .auth-checkbox input:focus-visible + .auth-checkbox__box,
.auth-login-page .auth-submit:focus-visible,
.auth-login-page .auth-brand:focus-visible,
.auth-login-page .auth-register a:focus-visible {
    outline: 3px solid rgba(34, 211, 238, 0.68);
    outline-offset: 3px;
}

.auth-login-page .auth-password-toggle__hide,
.auth-login-page .auth-password-toggle[aria-pressed="true"] .auth-password-toggle__show {
    display: none;
}

.auth-login-page .auth-password-toggle[aria-pressed="true"] .auth-password-toggle__hide {
    display: block;
}

.auth-login-page .auth-form-options {
    display: flex;
    margin-top: -2px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.auth-login-page .auth-checkbox {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    color: var(--auth-muted-strong);
    font-size: 12px;
    cursor: pointer;
    user-select: none;
}

.auth-login-page .auth-checkbox input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.auth-login-page .auth-checkbox__box {
    display: grid;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(238, 240, 255, 0.25);
    border-radius: 5px;
    color: white;
    background: rgba(8, 8, 20, 0.7);
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
    place-items: center;
}

.auth-login-page .auth-checkbox__box svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 150ms ease, transform 150ms ease;
}

.auth-login-page .auth-checkbox input:checked + .auth-checkbox__box {
    border-color: var(--auth-purple);
    background: linear-gradient(135deg, var(--auth-purple), var(--auth-purple-deep));
    box-shadow: 0 0 16px rgba(124, 92, 255, 0.28);
}

.auth-login-page .auth-checkbox input:checked + .auth-checkbox__box svg {
    opacity: 1;
    transform: scale(1);
}

.auth-login-page .auth-session-note {
    color: #777c9d;
    font-size: 11px;
}

.auth-login-page .auth-submit {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 56px;
    margin-top: 1px;
    padding: 0 20px;
    overflow: hidden;
    border: 1px solid rgba(184, 166, 255, 0.34);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    background: linear-gradient(115deg, #7554ee, #8b65fa 58%, #5e55e8);
    box-shadow: 0 14px 34px rgba(72, 45, 175, 0.34), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.auth-login-page .auth-submit::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 28%, rgba(255, 255, 255, 0.18) 50%, transparent 72%);
    content: "";
    transform: translateX(-120%);
    transition: transform 500ms ease;
}

.auth-login-page .auth-submit:hover:not(:disabled) {
    box-shadow: 0 18px 42px rgba(72, 45, 175, 0.46), 0 0 30px rgba(124, 92, 255, 0.16);
    filter: brightness(1.07);
    transform: translateY(-2px);
}

.auth-login-page .auth-submit:hover:not(:disabled)::before {
    transform: translateX(120%);
}

.auth-login-page .auth-submit:active:not(:disabled) {
    transform: translateY(0);
}

.auth-login-page .auth-submit:disabled {
    cursor: wait;
    opacity: 0.76;
}

.auth-login-page .auth-submit > svg {
    width: 18px;
    height: 18px;
}

.auth-login-page .auth-submit__loading {
    display: none;
    align-items: center;
    gap: 9px;
}

.auth-login-page .auth-submit__loading i {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.36);
    border-top-color: white;
    border-radius: 50%;
    animation: auth-spin 700ms linear infinite;
}

.auth-login-page .auth-submit.is-loading .auth-submit__label,
.auth-login-page .auth-submit.is-loading > svg {
    display: none;
}

.auth-login-page .auth-submit.is-loading .auth-submit__loading {
    display: inline-flex;
}

.auth-login-page .auth-register {
    margin: 27px 0 0;
    color: var(--auth-muted);
    font-size: 12px;
    text-align: center;
}

.auth-login-page .auth-register a {
    color: #bcaeff;
    font-weight: 600;
    text-decoration: none;
}

.auth-login-page .auth-register a:hover {
    color: var(--auth-cyan);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.auth-register-page .auth-shell__form-panel {
    padding: clamp(28px, 3.8vw, 54px) clamp(34px, 5vw, 68px);
}

.auth-register-page .auth-form-wrap {
    width: min(100%, 460px);
}

.auth-register-page .auth-form-header {
    margin-bottom: 20px;
}

.auth-register-page .auth-form-header h2 {
    font-size: clamp(32px, 3.4vw, 40px);
}

.auth-register-page .auth-form {
    gap: 14px;
}

.auth-register-page .auth-field {
    gap: 6px;
}

.auth-register-page .auth-control input {
    height: 52px;
}

.auth-register-page .auth-submit {
    min-height: 52px;
    margin-top: 3px;
}

.auth-register-page .auth-register {
    margin-top: 18px;
}

@keyframes auth-shell-enter {
    from {
        opacity: 0;
        transform: perspective(1400px) translateY(24px) scale(0.985) rotateX(var(--auth-tilt-x)) rotateY(var(--auth-tilt-y));
    }
    to {
        opacity: 1;
        transform: perspective(1400px) translateY(0) scale(1) rotateX(var(--auth-tilt-x)) rotateY(var(--auth-tilt-y));
    }
}

@keyframes auth-title-shift {
    to { background-position: 100% center; }
}

@keyframes auth-signal {
    0%, 100% {
        opacity: 0.62;
        transform: scale(0.82);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes auth-orb-purple {
    to { transform: translate3d(7vw, 5vh, 0) scale(1.08); }
}

@keyframes auth-orb-cyan {
    to { transform: translate3d(-6vw, -5vh, 0) scale(0.92); }
}

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

@media (max-width: 900px) {
    .auth-login-page .auth-main {
        padding: 28px;
    }

    .auth-login-page .auth-shell {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .auth-login-page .auth-shell__intro {
        min-height: 260px;
        padding: 30px 38px;
        border-right: 0;
        border-bottom: 1px solid var(--auth-line);
    }

    .auth-login-page .auth-intro-copy {
        margin: 36px 0 0;
        padding: 0;
    }

    .auth-login-page .auth-intro-copy h1 {
        margin: 15px 0 12px;
        font-size: 42px;
    }

    .auth-login-page .auth-intro-copy h1 br {
        display: none;
    }

    .auth-login-page .auth-intro-copy p {
        line-height: 1.6;
    }

    .auth-login-page .auth-proof {
        display: none;
    }

    .auth-login-page .auth-shell__form-panel {
        padding: 50px 38px;
    }

    .auth-register-page .auth-shell__form-panel {
        padding: 38px;
    }
}

@media (max-width: 560px) {
    .auth-login-page .auth-main {
        display: block;
        padding: 12px;
    }

    .auth-login-page .auth-shell {
        border-radius: 22px;
    }

    .auth-login-page .auth-shell__intro {
        min-height: auto;
        padding: 22px 22px 24px;
    }

    .auth-login-page .auth-brand__mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .auth-login-page .auth-brand__wordmark {
        font-size: 17px;
    }

    .auth-login-page .auth-intro-copy {
        display: none;
    }

    .auth-login-page .auth-shell__form-panel {
        padding: 34px 22px 30px;
    }

    .auth-register-page .auth-shell__form-panel {
        padding: 28px 22px 26px;
    }

    .auth-login-page .auth-form-header {
        margin-bottom: 25px;
    }

    .auth-login-page .auth-form-header h2 {
        font-size: 34px;
    }

    .auth-login-page .auth-form {
        gap: 18px;
    }

    .auth-register-page .auth-form {
        gap: 14px;
    }

    .auth-login-page .auth-control input {
        height: 54px;
        font-size: 16px;
    }

    .auth-login-page .auth-form-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
    }

    .auth-login-page .auth-session-note {
        margin: -7px 0 2px 28px;
    }

    .auth-login-page .auth-register {
        margin-top: 23px;
    }

    .auth-login-page .auth-scene__grid {
        opacity: 0.12;
    }
}
