/* Estilos para o Login do Sistema Administrativo Ohana House */

body {
    font-family: 'Oswald', Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4b8df9, #343a40);
    background-size: cover;
    background-position: center;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo h1 {
    color: #555;
    font-size: 24px;
    margin-top: 10px;
}

.login-form input {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.login-form button {
    background-color: #4b8df9;
    border: none;
    padding: 12px;
    color: white;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.login-form button:hover {
    background-color: #3672d8;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.alert {
    margin-bottom: 20px;
} 