/* Shared look for login / forgot-password / reset-password — unauthenticated pages with no sidebar chrome. */

body.auth-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: var(--space-3);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.auth-card {
    width: 100%;
    max-width: 380px;
}

.auth-logo {
    text-align: center;
    margin-bottom: var(--space-4);
}
.auth-logo img { height: 44px; margin: 0 auto; filter: brightness(0) invert(1); }

.auth-panel {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 32px rgba(15, 30, 60, 0.18);
    padding: var(--space-5) var(--space-4);
}

.auth-panel h1 {
    font-size: 1.3rem;
    margin-bottom: var(--space-2);
}

.auth-subtext {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-4);
}

.auth-links {
    text-align: center;
    margin-top: var(--space-3);
    font-size: 0.9rem;
}
