/* Login Page Styles */

body {
    background: linear-gradient(135deg, #1E3A8A 0%, #A8DADC 100%);
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.video-background.loaded {
    opacity: 1;
}

.login-content {
    transition: opacity 0.3s ease-in-out;
}

.login-content.hidden {
    display: none;
}

.loading-container {
    display: none;
    text-align: center;
}

.loading-container.active {
    display: block;
}

.spinner {
    border: 4px solid rgba(237, 146, 42, 0.3);
    border-top: 4px solid #ED922A;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

/* Note: @keyframes spin is defined in core.css */

.loading-text {
    color: #ED922A;
    font-size: 18px;
    font-weight: 500;
}
