/* Authentication Container — parent layout only */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.auth-wrapper {
    background: transparent;
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

/* Responsive */
@media (max-width: 480px) {
    .auth-wrapper {
        padding: 30px 20px;
    }
}
