/* Animate.css adjustments for login container (separate file) */
.login-sec.animate__animated {
    --animate-duration: 1.2s;
    animation-duration: 1.2s;
    animation-fill-mode: both;
    will-change: transform, opacity;
    animation-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    .login-sec.animate__animated { animation: none !important; }
}

/* Layout fallbacks to ensure background and centering when main stylesheet isn't applied */
html, body {
    height: 100%;
}

body {
    margin: 0;
    background-color: #FF8C00;
}

main.login-block {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Brand title color */
.login-sec h2.brand { color: #FF8C00; }




