/* Authentication pages styling (login, register, no_access)
   These pages use standalone templates without base.html */

body {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--bg-light);
}

/* Shared container styling for all auth pages */
.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}
