/* Admin Login Styles */
.login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 400px;
}

.login-title {
    color: #333;
    font-weight: 600;
    font-size: 1.5rem;
}

.login-form .form-control {
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.login-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    background-color: white;
}

.btn-login {
    background: #007bff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-login:hover:not(:disabled) {
    background: #0056b3;
    transform: translateY(-1px);
}

.btn-login:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.alert {
    border-radius: 8px;
    border: none;
}

@media (max-width: 480px) {
    .login-card {
        margin: 10px;
    }
}
