/* Auth screens (login / register) */

.auth-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    background: #000000;
}

.auth-logo {
    margin-bottom: 32px;
}
.auth-logo img {
    height: 200px;
    width: auto;
    max-width: 90vw;
}

.auth-card {
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    width: 100%;
    max-width: 400px;
}

.auth-card h1 {
    font-family: var(--font-headline);
    font-style: italic;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.auth-error {
    background: var(--danger-bg);
    color: var(--danger);
    padding: 10px 14px;
    border-radius: var(--r-md);
    font-size: 13px;
    margin-bottom: 14px;
}

.auth-switch {
    text-align: center;
    font-size: 13px;
    color: var(--fg-3);
    margin-top: 16px;
}
.auth-switch a {
    color: var(--flame-500);
    font-weight: 600;
}
