<!-- static/css/login.css -->
body {
    background-color: #0d152b;
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    max-width: 250px;
    margin-bottom: 30px;
}

.login-card {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.login-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e5a00d;
    color: #1f1f1f;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.login-button:hover {
    background-color: #f5b126;
    transform: translateY(-2px);
}

.login-button img {
    height: 24px;
    margin-right: 10px;
}

.login-info {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
    opacity: 0.6;
    background-image: url('/static/backgrounds/login_background.jpg');
}

.error-message {
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: left;
}

.info-message {
    background-color: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: left;
}

.spinner-container {
    display: none;
    margin-top: 20px;
}

.spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-container {
        padding: 10px;
    }
    
    .login-card {
        padding: 15px;
    }
    
    .logo {
        max-width: 200px;
    }
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}