/* Estilo global */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f9fc;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contenedor principal 
.container {
    text-align: center;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}*/

/* Título */
h1 {
    font-size: 2.5em;
    color: #4f6367;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Formulario */
form {
    display: flex;
    flex-direction: column;
}

form label {
    text-align: left;
    font-size: 1em;
    color: #4f6367;
    margin-bottom: 8px;
    font-weight: bold;
}

form input {
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #d1d9e6;
    border-radius: 5px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s;
}

form input:focus {
    border-color: #87a8d0;
}

/* Botón */
form button {
    padding: 12px 15px;
    font-size: 1em;
    color: #ffffff;
    background-color: #4f6367;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

form button:hover {
    background-color: #87a8d0;
}

/* Enlace */
a {
    color: #4f6367;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 10px;
}

a:hover {
    color: #87a8d0;
}

/* Contenedor del logo y título */
.logo-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

/* Estilo del logo */
.logo {
    width: 300px; /* Ajusta el tamaño según tu preferencia */
    max-width: 400px; /* Evita que se desborde del contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    border-radius: 10px; /* Opcional: bordes ligeramente redondeados */
    margin-bottom: 10px; /* Espacio entre la imagen y el título */
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

/* Contenedor principal */
.container {
    text-align: center;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    overflow: hidden; /* Asegura que los elementos no sobresalgan */
}