/* assets/css/guest.css */
/* ┌─────────────────────────────────────────────────────────────────────────┐
   │ 4. LAYOUT GUEST (login/register)                                       │
   └─────────────────────────────────────────────────────────────────────────┘ */

.layout-guest {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 0 1rem;
}

.guest-header {
    width: 100%;
    max-width: 480px;
    padding: 2rem 0 1.5rem;
    text-align: center;
}

.guest-logo {
    font-family: var(--at-font);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--at-oro);
    letter-spacing: 0.03em;
    text-decoration: none;
}

.guest-logo:hover {
    color: var(--at-oro-chiaro);
    text-decoration: none;
}

.guest-main {
    width: 100%;
    max-width: 480px;
    flex: 1;
    padding-bottom: 2rem;
}

.guest-footer {
    padding: 1.5rem 0;
    font-family: var(--at-font-ui);
    font-size: 0.75rem;
    color: var(--at-testo-faint);
    text-align: center;
}