body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #009de0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -110px; /* Ajusta este valor para mover todo hacia arriba */
}

.image-container {
    margin-bottom: 20px;
    text-align: center;
}

.image-container img {
    max-width: 25%;
    height: auto;
    display: inline-block;
}

.container {
    text-align: center;
}

.login-box {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left; /* Cambia el texto del contenedor a la izquierda */
}

input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s, background-color 0.3s;
    box-sizing: border-box; /* Asegura que el padding no afecte al ancho total */
}

label {
    display: block;
    margin: 10px 0 5px;
    color: #666; /* Mismo color que el texto de p */
    font-size: 14px; /* Mismo tamaño de fuente que el texto de p */
    font-weight: 300; /* Mismo peso de fuente que el texto de p */
}

h2 {
    margin: 0 0 15px;
    color: #009de0;
    text-align: left;
    line-height: 0.3; /* Ajusta el interlineado */
    font-weight: 300; /* Hace el texto más delgado */
    font-size: 14px;
}

p {
    color: #666;
    margin: 0 0 20px;
    text-align: left;
    line-height: 1.2; /* Ajusta el interlineado */
}

input:hover,
input:focus {
    border-color: #007bb8; /* Cambia el color del borde al hacer hover o focus */
    background-color: #f0f8ff; /* Cambia el color de fondo al hacer hover o focus */
    outline: none; /* Elimina el contorno predeterminado */
}

button {
    width: 55%; /* Ajusta el porcentaje para cambiar el ancho del botón */
    max-width: 250px; /* Opcional: Establece un ancho máximo para evitar que el botón sea demasiado grande en pantallas grandes */
    padding: 10px;
    background: #009de0;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: block; /* Asegura que el botón se alinee correctamente */
    margin: 0 auto; /* Centra el botón horizontalmente */
    font-size: 14px; /* Mismo tamaño de fuente que el texto de p */
    font-weight: 300; /* Mismo peso de fuente que el texto de p */
    margin-bottom:-20px; /* Margen inferior */
}

button:hover {
    background: #007bb8;
}
