/* /Layout/AuthLayout.razor.rz.scp.css */
/* Story 5.1 AC #7: AuthLayout styles - centered card design for auth pages */
.skip-to-content[b-vgy5q166pi] {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-to-content:focus[b-vgy5q166pi] {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    padding: 0.5rem 1rem;
    background: var(--brand-primary);
    color: white;
    text-decoration: none;
    z-index: 1000;
}

.auth-layout[b-vgy5q166pi] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--brand-background);
}

.auth-container[b-vgy5q166pi] {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.auth-logo[b-vgy5q166pi] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo h2[b-vgy5q166pi] {
    color: var(--brand-primary);
    font-weight: 600;
}

/* Story 5.16: Reduce padding on very narrow screens (AC #3) */
@media (max-width: 480px) {
    .auth-container[b-vgy5q166pi] {
        padding: 1rem;
    }
}
