/* Login Page Background - Target ONLY Simple Layout (Auth Pages) */
.fi-simple-layout {
    background: radial-gradient(circle at center, #6366f1 0%, #4f46e5 100%) !important;
    min-height: 100vh;
}

/* Login Card Glassmorphism */
.fi-simple-main {
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Ensure the body doesn't override the simple layout background if needed */
body:has(.fi-simple-layout) {
    margin: 0;
    background-color: #4f46e5;
    /* Fallback */
}