/* Login Page Styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 600% 600%;
    animation: gradient-animation 20s ease infinite;
    position: relative;
    overflow: hidden;
}

.login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/security-pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.login-form-paper {
    width: 400px;
    max-width: 90%;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.login-logo-container {
    text-align: center;
    margin-bottom: 30px;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.2));
    transform: scale(1);
    transition: transform 0.3s ease;
}

.login-logo:hover {
    transform: scale(1.05);
}

.login-title {
    margin-bottom: 24px;
    color: #333;
    font-weight: 500;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-button {
    padding: 12px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.login-button:hover:not(:disabled) {
    transform: translateY(-2px);
}

.register-link {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .login-form-paper {
        width: 90%;
        padding: 20px !important;
    }
    
    .login-logo {
        width: 150px;
    }
}
