/* static/css/login.css */
body {
    background-color: #f0f5e1; /* Fondo claro verde */
    font-family: Arial, sans-serif;
    color: #333;
}

.form-container {
    max-width: 400px;
    margin: 80px auto; /* Aumentado margen para centrar mejor verticalmente */
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* AÑADIDO: Estilo para las etiquetas */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

/* MODIFICADO: Se añade box-sizing y se separan los selectores */
input[type="email"],
input[type="password"],
button {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box; /* AÑADIDO CRUCIAL */
    font-size: 16px;
}

button {
    background-color: #9ccd7f; /* Verde */
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #8db46f; /* Verde más oscuro */
}

h2 {
    text-align: center;
    color: #9ccd7f; /* Unificado color con registro */
    margin-top: 0;
    margin-bottom: 30px;
}

a {
    color: #9ccd7f; /* Unificado color con registro */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.links {
    text-align: center;
}

.links p {
    margin-bottom: 10px;
}