/* Authentication Pages Styling */

/* Override body styles for centered auth page */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh; /* Use small viewport height for mobile browsers */
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
}

/* Mobile optimizations */
@media screen and (max-width: 480px) {
    main {
        padding: 0.5rem;
    }
}

.auth-link {
    text-align: center;
    margin-top: 1rem;
    color: var(--md-sys-color-on-surface-variant);
    font-size: 0.9rem;
}

.auth-link a {
    color: var(--md-sys-color-primary);
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

.error-message {
    color: var(--md-sys-color-error);
}

/* Hide footer on auth pages */
footer {
    display: none;
}

