:root {
    --azul: #003366;
    --preto: #1a1a1a;
    --dourado: #d4af37;
    --vermelho: #c0392b;
    --cinza: #f4f4f4;
}

body { 
    background-color: var(--cinza); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 100vh; 
    margin: 0;
    font-family: sans-serif;
}

.login-card { 
    background: white; 
    padding: 40px; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    border-top: 5px solid var(--dourado); 
    width: 100%; 
    max-width: 400px; 
}

.title-login {
    color: var(--azul);
    font-weight: bold;
}

.btn-custom { 
    background-color: var(--azul); 
    color: white; 
    width: 100%; 
    border: none;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-custom:hover { 
    background-color: var(--preto); 
    color: var(--dourado); 
}