.auth-body { padding-top: 0; min-height: 100vh; }
.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
}
.auth-brand {
    position: relative;
    background: #152824;
    color: #f4efe6;
    padding: 2.2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.auth-brand::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 20% 20%, rgba(196, 92, 38, 0.35), transparent 42%),
        radial-gradient(circle at 80% 80%, rgba(201, 166, 107, 0.22), transparent 40%);
}
.auth-brand > * { position: relative; z-index: 1; }
.auth-quote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 1.25;
    font-weight: 700;
    max-width: 14ch;
}
.auth-quote em { font-style: italic; color: #e07a5f; }
.auth-meta { color: rgba(244, 239, 230, 0.72); max-width: 28rem; }
.auth-panel {
    display: grid;
    place-items: center;
    padding: 2rem 1.25rem;
    background: var(--bg);
}
.auth-card { width: min(440px, 100%); }
.auth-card h1 { font-size: 1.7rem; margin-bottom: 0.35rem; }
.auth-card .sub { color: var(--ink-soft); margin-bottom: 1.6rem; }
.pw-wrap { position: relative; }
.pw-wrap .input { padding-right: 3rem; }
.pw-toggle {
    position: absolute;
    right: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    cursor: pointer;
    color: var(--muted);
}
.check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin: 0.2rem 0 1.1rem;
}
.auth-foot { margin-top: 1.4rem; color: var(--muted); font-size: 0.92rem; }
.auth-foot a { color: var(--accent); font-weight: 600; }
.staff-note {
    margin-top: 1.2rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.auth-admin .auth-brand { background: #0e0d0b; }
.auth-admin .auth-quote { max-width: 14ch; }

@media (max-width: 900px) {
    .auth-shell { grid-template-columns: 1fr; }
    .auth-brand { min-height: 34vh; padding: 1.4rem; }
    .auth-quote { font-size: 2.1rem; max-width: none; }
}
