/* ========== AUTH PAGES LAYOUT ========== */
/* Standalone layout for login, register, password recovery pages */
/* These pages have NO sidebar, so we override the dashboard-centric global styles */

body.auth-page {
    background-color: #f4f7fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
}

body.auth-page .auth-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

body.auth-page .lms-footer {
    margin-left: 0 !important;
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.02);
    padding: 1.5rem 0;
    flex-shrink: 0;
}

[data-theme="dark"] body.auth-page {
    background-color: #121212;
}

[data-theme="dark"] body.auth-page .lms-footer {
    background: #1a1a1a;
    border-top-color: rgba(255, 255, 255, 0.05);
}
