/* /Pages/Login.razor.rz.scp.css */
/* Login page responsive split-layout */
.login-page[b-lz4fxs3z06] {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.login-hero[b-lz4fxs3z06] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #0d1f35 100%);
    padding: 2rem;
    text-align: center;
}

.login-form-wrapper[b-lz4fxs3z06] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--mud-palette-background);
}

.login-card[b-lz4fxs3z06] {
    width: 100%;
    max-width: 420px;
}

.login-features[b-lz4fxs3z06] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.feature-item[b-lz4fxs3z06] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive: stack vertically on mobile */
@media (max-width: 768px) {
    .login-page[b-lz4fxs3z06] {
        flex-direction: column;
    }

    .login-hero[b-lz4fxs3z06] {
        min-height: auto;
        padding: 1.5rem;
    }

    .login-hero[b-lz4fxs3z06]  .mud-typography-h4 {
        font-size: 1.5rem !important;
    }

    .login-form-wrapper[b-lz4fxs3z06] {
        padding: 1rem;
    }

    .login-card[b-lz4fxs3z06] {
        max-width: 100%;
    }

    .login-features[b-lz4fxs3z06] {
        display: none;
    }
}
