/* Login page — dark canvas reveal + glass auth shell */

.login-page {
    background: #0B0B0B;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    isolation: isolate;
    min-height: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}

.login-page::before,
.login-page::after {
    content: none !important;
}

.login-bg {
    background: #0B0B0B;
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.login-canvas-host {
    inset: 0;
    position: absolute;
}

.login-canvas-host.hidden {
    display: none !important;
}

.login-canvas {
    background: #0B0B0B;
    display: block;
    height: 100% !important;
    opacity: 0;
    transition: opacity 500ms ease;
    width: 100% !important;
}

/* Revealed after the first WebGL frame is drawn (loginCanvas.js). */
.login-canvas.is-ready {
    opacity: 1;
}

/* The success reveal swaps in over the intro canvas — no fade, or the swap dips. */
#loginCanvasReverse .login-canvas {
    transition: none;
}

.login-bg-vignette {
    background: radial-gradient(circle at center, rgba(11, 11, 11, 1) 0%, transparent 100%);
    inset: 0;
    position: absolute;
}

.login-bg-fade {
    background: linear-gradient(to bottom, #0B0B0B 0%, transparent 100%);
    height: 33.333%;
    inset: 0 0 auto;
    position: absolute;
}

.login-shell {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    z-index: 1;
}

/* ─── Top nav ─── */
.login-nav {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(31, 31, 31, 0.34);
    border: 1px solid #333;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    left: 50%;
    margin: 24px auto 0;
    max-width: calc(100% - 2rem);
    padding: 12px 24px;
    position: fixed;
    top: 0;
    transform: translateX(-50%);
    transition: border-radius 0.25s ease;
    width: min(100% - 2rem, 720px);
    z-index: 20;
}

.login-nav.is-open {
    border-radius: 14px;
}

.login-nav__row {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    width: 100%;
}

.login-nav__brand {
    align-items: center;
    display: flex;
    flex-shrink: 0;
}

.login-nav__mark {
    display: block;
    height: 15px;
    width: auto;
}

.login-nav__links {
    align-items: center;
    display: none;
    gap: 22px;
}

.login-nav__link {
    cursor: default;
    display: inline-flex;
    height: 1.375rem;
    overflow: hidden;
    position: relative;
}

.login-nav__link-stack {
    display: grid;
    grid-template-rows: 1.375rem 1.375rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.login-nav__link:hover .login-nav__link-stack {
    transform: translate3d(0, -1.375rem, 0);
}

.login-nav__link-text {
    align-items: center;
    color: rgba(209, 213, 219, 1);
    display: flex;
    font-size: 14px;
    height: 1.375rem;
    line-height: 1;
    white-space: nowrap;
}

.login-nav__link-text--hover {
    color: #fff;
}

.login-nav__actions {
    align-items: center;
    display: none;
    gap: 8px;
}

.login-nav__signup-wrap {
    display: inline-flex;
    position: relative;
}

.login-nav__signup-wrap--menu {
    width: 100%;
}

.login-nav__signup-wrap--menu .login-nav__btn {
    width: 100%;
}

.login-nav__signup-glow {
    background: #f3f4f6;
    border-radius: 999px;
    filter: blur(16px);
    inset: 0;
    margin: -8px;
    opacity: 0.4;
    pointer-events: none;
    position: absolute;
    transition:
        filter 0.3s ease-out,
        margin 0.3s ease-out,
        opacity 0.3s ease-out;
}

.login-nav__signup-wrap:hover .login-nav__signup-glow {
    filter: blur(24px);
    margin: -12px;
    opacity: 0.6;
}

.login-nav__signup-wrap .login-nav__btn {
    position: relative;
    z-index: 1;
}

.login-nav__btn {
    align-items: center;
    background: rgba(31, 31, 31, 0.62);
    border: 1px solid #333;
    border-radius: 999px;
    color: rgba(209, 213, 219, 1);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 500;
    justify-content: center;
    padding: 8px 14px;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.login-nav__btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.login-nav__btn--signup {
    background: linear-gradient(to bottom right, #f3f4f6, #d1d5db);
    border-color: transparent;
    box-shadow: 0 0 24px rgba(243, 244, 246, 0.18);
    color: #000;
    font-weight: 600;
}

.login-nav__btn--signup:hover {
    background: linear-gradient(to bottom right, #e5e7eb, #9ca3af);
    color: #000;
}

.login-nav__toggle {
    align-items: center;
    background: transparent;
    border: none;
    color: rgba(209, 213, 219, 1);
    cursor: pointer;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    padding: 0;
    width: 32px;
}

.login-nav__toggle svg {
    height: 22px;
    width: 22px;
}

.login-nav__menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    pointer-events: none;
    transition:
        max-height 0.3s ease,
        opacity 0.3s ease,
        padding-top 0.3s ease;
    width: 100%;
}

.login-nav.is-open .login-nav__menu {
    max-height: 320px;
    opacity: 1;
    padding-top: 16px;
    pointer-events: auto;
}

.login-nav__menu-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}

.login-nav__menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.login-nav__menu-actions .login-nav__btn {
    width: 100%;
}

/* ─── Main form ─── */
/* Top-anchored, not centred: the headline and the Log in | Register switch
   keep their Y while fields, errors and notices open below them. */
.login-main {
    align-items: flex-start;
    display: flex;
    flex: 1;
    justify-content: center;
    padding: clamp(96px, calc(50vh - 300px), 240px) 20px 40px;
}

.login-panel {
    /* Fields sit on the glass as darker, softer glass. */
    --auth-field: rgba(0, 0, 0, 0.3);
    --auth-field-blur: blur(10px) saturate(120%);
    --auth-line: rgba(255, 255, 255, 0.08);
    --auth-line-hover: rgba(255, 255, 255, 0.14);
    --auth-muted: rgba(255, 255, 255, 0.42);
    --auth-ease: cubic-bezier(0.22, 1, 0.36, 1);
    /* Height reveals (email field, forgot link, messages). */
    --auth-reveal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    animation: loginPanelIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
    box-sizing: border-box;
    isolation: isolate;
    max-width: 480px;
    padding: 42px 40px 34px;
    position: relative;
    text-align: center;
    width: 100%;
}

/* Layer blur: a soft dark halo under the card lifts it off the canvas. */
.login-panel::before {
    background: radial-gradient(
        ellipse 70% 65% at 50% 50%,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.35) 55%,
        transparent 75%
    );
    content: "";
    filter: blur(28px);
    inset: -56px -64px -72px;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

/* Clear glass: only a background blur of the canvas and a hairline edge —
   no fill, sheen or grain. On ::after so it paints above the halo, below content. */
.login-panel::after {
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .login-panel::after {
        background-color: rgba(14, 14, 14, 0.9);
    }
}

@keyframes loginPanelIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Metallic headline: bright top, brushed grey bottom. */
.login-panel__title {
    display: grid;
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 6vw, 3.3rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin: 0;
}

.login-panel__title-text,
.verify-email__title {
    background: linear-gradient(180deg, #ffffff 0%, #e9e9e9 38%, #9a9a9a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.login-panel__title-text {
    grid-area: 1 / 1;
    transition:
        opacity 0.32s var(--auth-ease),
        transform 0.42s var(--auth-ease),
        filter 0.32s ease;
}

.login-panel__title-text[aria-hidden="true"] {
    filter: blur(6px);
    opacity: 0;
    transform: translateY(8px);
}

.login-panel__sub {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.3;
    margin: 12px 0 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

/* Controls on the card are glass too (lighter blur than the card). */
.auth-tabs,
.login-input,
.login-submit,
.login-oauth__btn {
    -webkit-backdrop-filter: var(--auth-field-blur);
    backdrop-filter: var(--auth-field-blur);
}

/* ─── Log in | Register ─── */
.auth-tabs {
    background: var(--auth-field);
    border: 1px solid var(--auth-line);
    border-radius: 999px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 50px;
    padding: 4px;
    position: relative;
}

.auth-tabs__thumb {
    background: linear-gradient(180deg, #f7f7f7, #e6e6e6);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 6px 18px -8px rgba(255, 255, 255, 0.35);
    inset: 4px auto 4px 4px;
    pointer-events: none;
    position: absolute;
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
    width: calc(50% - 4px);
}

.login-panel[data-auth-mode="register"] .auth-tabs__thumb {
    transform: translateX(100%);
}

.auth-tabs__tab {
    background: none;
    border: 0;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-family: var(--f-ui);
    font-size: 14.5px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    z-index: 1;
}

.auth-tabs__tab:hover {
    color: rgba(255, 255, 255, 0.86);
}

.auth-tabs__tab[aria-selected="true"] {
    color: #0b0b0b;
}

.auth-tabs__tab:focus-visible {
    outline: 1.5px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* ─── Fields ─── */
.login-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}

.login-field {
    margin-bottom: 0;
    position: relative;
}

.login-input {
    background: var(--auth-field);
    border: 1px solid var(--auth-line);
    border-radius: 999px;
    color: #fff;
    font-family: var(--f-ui);
    font-size: 15px;
    height: 54px;
    outline: none;
    padding: 0 20px;
    text-align: left;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
    width: 100%;
}

.login-field--password .login-input {
    padding-right: 62px;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.login-input:hover {
    border-color: var(--auth-line-hover);
}

/* Neutral focus: a soft white glow, never the global accent outline. */
.login-page .login-input:focus,
.login-page .login-input:focus-visible {
    background: rgba(0, 0, 0, 0.42);
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08) !important;
    outline: none !important;
    outline-offset: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
    .login-nav__link-stack {
        transition: none;
    }

    .login-nav__link:hover .login-nav__link-stack {
        transform: none;
    }

    .login-nav__link-text--hover {
        color: rgba(209, 213, 219, 1);
    }
}

/* Email field: open on the Register tab only. */
.login-field--email {
    display: grid;
    grid-template-rows: 0fr;
    margin-top: -14px;
    opacity: 0;
    transition:
        grid-template-rows var(--auth-reveal),
        margin-top var(--auth-reveal),
        opacity var(--auth-reveal);
}

.login-field--email.is-open {
    grid-template-rows: 1fr;
    margin-top: 0;
    opacity: 1;
}

.login-field__reveal {
    margin: -4px;
    min-height: 0;
    overflow: hidden;
    padding: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .login-field--email {
        transition: none;
    }
}

/* Eye toggle inside the password pill. */
.login-field__reveal-btn {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.2s ease, color 0.2s ease;
    width: 40px;
}

.login-field__reveal-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.login-field__reveal-btn:focus-visible {
    outline: 1.5px solid rgba(255, 255, 255, 0.5);
    outline-offset: 1px;
}

.login-field__reveal-btn svg {
    fill: none;
    grid-area: 1 / 1;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: opacity 0.18s ease, transform 0.25s var(--auth-ease);
    width: 18px;
}

.login-field__reveal-btn {
    display: inline-grid;
    place-items: center;
}

.login-field__reveal-btn .is-hide,
.login-field__reveal-btn[aria-pressed="true"] .is-show {
    opacity: 0;
    transform: scale(0.7);
}

.login-field__reveal-btn[aria-pressed="true"] .is-hide {
    opacity: 1;
    transform: none;
}

/* Forgot password: login tab only (collapses on Register). */
.login-forgot-wrap {
    display: grid;
    grid-template-rows: 1fr;
    opacity: 1;
    transition:
        grid-template-rows var(--auth-reveal),
        opacity var(--auth-reveal);
}

.login-forgot-wrap__inner {
    display: flex;
    justify-content: flex-end;
    min-height: 0;
    overflow: hidden;
    padding: 12px 6px 0;
}

.login-panel[data-auth-mode="register"] .login-forgot-wrap {
    grid-template-rows: 0fr;
    opacity: 0;
    pointer-events: none;
}

.login-forgot {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.62);
    cursor: pointer;
    font-family: var(--f-ui);
    font-size: 13px;
    line-height: 1.2;
    padding: 0;
    transition: color 0.2s ease;
}

.login-forgot:hover {
    color: #fff;
}

/* ─── Submit ─── */
.login-submit {
    align-items: center;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--auth-line);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    font-family: var(--f-ui);
    font-size: 15px;
    font-weight: 600;
    height: 54px;
    justify-content: center;
    position: relative;
    margin-top: 24px;
    padding: 0 18px;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.12s ease;
}

/* The active label sizes the cell (width: auto at rest); the idle one sits
   centred on top, out of flow. While the tabs switch, js/app.js eases the
   cell between the two measured widths, so the arrow glides, then lets go. */
.login-submit__labels {
    display: grid;
    justify-items: center;
    position: relative;
    transition: width 0.42s cubic-bezier(0.32, 0.72, 0, 1);
    white-space: nowrap;
}

.login-submit__label {
    grid-area: 1 / 1;
    transition:
        opacity 0.28s ease,
        transform 0.42s cubic-bezier(0.32, 0.72, 0, 1),
        filter 0.28s ease;
}

.login-submit__label[aria-hidden="true"] {
    filter: blur(4px);
    inset: 0;
    margin-inline: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translateY(7px) scale(0.96);
    width: max-content;
}

@media (prefers-reduced-motion: reduce) {
    .login-submit__labels,
    .login-submit__label {
        transition: opacity 0.15s ease;
    }
}

.login-submit__arrow {
    fill: none;
    height: 15px;
    margin-left: 8px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 0.28s var(--auth-ease);
    width: 15px;
}

.login-submit:hover {
    border-color: var(--auth-line-hover);
    color: rgba(255, 255, 255, 0.7);
}

.login-submit:hover .login-submit__arrow {
    transform: translateX(3px);
}

.login-submit.is-ready {
    background: linear-gradient(180deg, #f7f7f7, #e2e2e2);
    border-color: transparent;
    box-shadow: 0 10px 30px -14px rgba(255, 255, 255, 0.45);
    color: #0b0b0b;
}

.login-submit:active {
    transform: scale(0.985);
}

.login-submit:focus-visible {
    outline: 1.5px solid rgba(255, 255, 255, 0.55);
    outline-offset: 2px;
}

.login-submit:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* In flight (js/app.js setAuthBusy): the arrow gives way to a spinner. */
.login-submit__spinner {
    animation: loginSpin 0.7s linear infinite;
    border: 1.8px solid currentColor;
    border-radius: 50%;
    border-right-color: transparent;
    display: none;
    height: 15px;
    margin-left: 8px;
    width: 15px;
}

.login-submit.is-busy .login-submit__arrow {
    display: none;
}

.login-submit.is-busy .login-submit__spinner {
    display: block;
}

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

/* ─── Cold-start banner ─── */
/* Rows 0fr → 1fr animates the height to auto. */
.server-wake {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(6px);
    transition:
        grid-template-rows 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.server-wake.is-visible {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: none;
}

.server-wake__inner {
    min-height: 0;
    overflow: hidden;
}

.server-wake__card {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #d4d4d4;
    display: flex;
    font-size: 12px;
    gap: 10px;
    line-height: 1.4;
    margin-top: 12px;
    padding: 10px 14px;
}

.server-wake__dot {
    background: #ccff00;
    border-radius: 50%;
    flex: none;
    height: 8px;
    position: relative;
    width: 8px;
}

.server-wake__dot::after {
    animation: serverWakePing 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    background: #ccff00;
    border-radius: inherit;
    content: "";
    inset: 0;
    opacity: 0.75;
    position: absolute;
}

@keyframes serverWakePing {
    75%,
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

@media (prefers-reduced-motion: reduce) {
    .server-wake {
        transition: opacity 0.15s ease;
    }

    .server-wake__dot::after {
        animation: none;
    }
}

.login-divider {
    align-items: center;
    color: rgba(255, 255, 255, 0.34);
    display: flex;
    font-size: 12px;
    gap: 14px;
    margin: 20px 0;
}

.login-divider::before,
.login-divider::after {
    background: rgba(255, 255, 255, 0.08);
    content: "";
    flex: 1;
    height: 1px;
}

/* ─── Apple · Google ─── */
.login-oauth {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

.login-oauth__btn {
    align-items: center;
    background: var(--auth-field);
    border: 1px solid var(--auth-line);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--f-ui);
    font-size: 14.5px;
    font-weight: 500;
    gap: 9px;
    height: 50px;
    justify-content: center;
    padding: 0 16px;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.12s ease,
        opacity 0.2s ease;
}

.login-oauth__btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--auth-line-hover);
}

.login-oauth__btn:active {
    transform: scale(0.98);
}

.login-oauth__btn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.login-oauth__icon {
    flex-shrink: 0;
    height: 17px;
    width: 17px;
}

/* Legal line: pinned under everything at the bottom of the page. */
.login-legal {
    color: rgba(255, 255, 255, 0.36);
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
    padding: 0 20px 22px;
    text-align: center;
    text-shadow: 0 0 10px #000, 0 0 3px #000;
}

.login-legal svg {
    display: inline-block;
    fill: none;
    height: 12px;
    margin-right: 6px;
    vertical-align: -2px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.4;
    width: 12px;
}

.login-page.is-loading .login-panel {
    opacity: 0.72;
    pointer-events: none;
}

@media (min-width: 640px) {
    .login-nav__links,
    .login-nav__actions {
        display: flex;
    }

    .login-nav__toggle,
    .login-nav__menu {
        display: none;
    }
}

.login-nav__menu-links .login-nav__link {
    height: 1.5rem;
    justify-content: center;
}

.login-nav__menu-links .login-nav__link-stack {
    grid-template-rows: 1.5rem 1.5rem;
}

.login-nav__menu-links .login-nav__link:hover .login-nav__link-stack {
    transform: translate3d(0, -1.5rem, 0);
}

.login-nav__menu-links .login-nav__link-text {
    font-size: 15px;
    height: 1.5rem;
}

@media (max-width: 639px) {
    .login-nav__signup-glow {
        display: none;
    }

    .login-main {
        padding-top: clamp(96px, calc(50vh - 270px), 150px);
    }

    .login-panel {
        padding: 28px 20px 24px;
    }

    .login-panel::after {
        border-radius: 28px;
    }

}

/* Short desktop windows (≤ 780px tall): a tighter card so the Register form
   and the legal line still fit without the page scrolling. */
@media (min-width: 640px) and (max-height: 780px) {
    .login-main {
        padding-top: clamp(92px, calc(50vh - 242px), 240px);
    }

    .login-panel {
        padding: 26px 34px 22px;
    }

    /* Controls keep the larger type but the previous heights. */
    .login-input,
    .login-submit {
        height: 48px;
    }

    .auth-tabs,
    .login-oauth__btn {
        height: 44px;
    }

    .login-fields {
        gap: 12px;
    }

    .login-field--email {
        margin-top: -12px;
    }

    .login-panel__title,
    .verify-email__title {
        font-size: 2.35rem;
    }

    .login-form {
        margin-top: 20px;
    }

    .login-fields {
        margin-top: 16px;
    }

    .login-submit {
        margin-top: 16px;
    }

    .login-divider {
        margin: 14px 0;
    }

    .login-legal {
        padding-bottom: 14px;
    }
}

