body {
    overflow: hidden;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    text-align: center;
    padding: 20px;
    width: 80%;
    max-width: 500px;
}

img {
    margin-bottom: 27px;
    width: 270px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

input[type="text"],
input[type="password"],
input[type="submit"] {
    box-sizing: border-box; /* Esta propiedad asegura que el padding y el borde están incluidos en el ancho total */
    width: 100%;
}

input[type="text"],
input[type="password"] {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 15px;
    background-color: #f1f1f1;
    border: none;
    border-radius: 3px;
    margin: 0 auto;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none; /* Esto elimina el borde por defecto que algunos navegadores agregan */
    border: 1px solid #cccccc; /* Establece un borde gris claro */
}

input[type="submit"] {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    font-size: 19px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.error-message {
    margin-bottom: -11px;
    color: red;
    font-weight: bold;
    margin-top: 12px;
}

.restablecer{
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-left: 5px;
    color: #010101;
}
.pregunta{
    text-decoration: none; 
    color: inherit;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #9e9e9e;
}

.contenedor{
    margin-top: 22px;
}
@media only screen and (max-width: 768px) {
    .pregunta{
        font-size: 13px;
    }
    .restablecer{
        font-size: 13px;
    }
}