body {
    background-color: #d3e2b0; /* Fondo gris claro */
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
    min-height: 100vh; /* Altura mínima para centrar en toda la pantalla */
    margin: 0;
}

/* --- ESTILOS DEL CONTENEDOR DEL FORMULARIO --- */
.Container {
    background: #f6feff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(229, 244, 245, 0.1); /* Sombra suave */
    width: 100%;
    max-width: 400px; /* Ancho máximo para el formulario */
    text-align: center;
}

.Container h2 {
    color: #0a000c;
    margin-bottom: 30px;
    font-weight: 600;
}

/* --- ESTILOS DE LOS CAMPOS DE ENTRADA (INPUTS) --- */
.Container div {
    margin-bottom: 20px;
    text-align: left;
}

.Container label {
    display: block;
    margin-bottom: 8px;
    color: #32626e;
    font-weight: 500;
}
.Container input[type="text"],
.Container input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e8f0f1;
    border-radius: 8px;
    box-sizing: border-box; /* Incluye padding y borde en el ancho total */
    font-size: 16px;
    transition: border-color 0.3s;
}

.Container input[type="text"]:focus,
.Container input[type="password"]:focus {
    border-color: #2e6c85; /* Color azul al enfocar */
    outline: none;
    box-shadow: 0 0 5px rgba(39, 125, 218, 0.3);
}

/* --- ESTILOS DEL BOTÓN DE ENTRAR --- */
.Container button[type="submit"] {
    background-color: #6bafa6; /* Azul primario */
    color: rgb(34, 25, 32);
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s, transform 0.1s;
}
.Container button[type="submit"]:hover {
    background-color: #507885; /* Azul más oscuro al pasar el ratón */
}
.Container button[type="submit"]:active {
    transform: scale(0.99);
}