/* Login page styles - Extraido de login.php */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 400px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.login-header {
    background-color: #1e3a5f;
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

.btn-primary {
    background-color: #0d6efd;
}