/* static/css/login.css */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 40px 20px; /* Espaçamento superior/inferior */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}
.form-container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Largura máxima do formulário */
    box-sizing: border-box;
}
h2 {
    text-align: center;
    color: #333;
    margin-top: 0;
    margin-bottom: 25px;
}
/* Estilos para mensagens flash */
.alert {
    padding: 12px 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9em;
    text-align: center;
}
.alert-danger { color: #a94442; background-color: #f2dede; border-color: #ebccd1; }
.alert-success { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; }
.alert-info { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; }
.alert-warning { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; }

/* Estilos para o formulário */
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
    font-size: 0.9em;
}
input[type=text], input[type=password] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Importante para padding não aumentar a largura total */
    font-size: 1em;
}
/* Botão de login (azul) */
input[type=submit] {
    width: 100%;
    padding: 12px 18px;
    margin-top: 10px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.2s ease;
}
input[type=submit]:hover {
    background-color: #0056b3;
}
.extra-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}
.extra-link a {
    color: #007bff;
    text-decoration: none;
}
.extra-link a:hover {
    text-decoration: underline;
}
