﻿.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Añade este estilo para asegurar que el h1 ocupe todo el ancho disponible */
    text-align: center; /* Añade este estilo para centrar el texto dentro del h1 */
    margin-top: 20px; /* Ajusta este valor para mover el h1 hacia abajo */
    margin-bottom: 20px; /* Añadir si deseas espacio entre el h1 y el formulario */
}
.login-form {
    width: 300px;
}

    .login-form h3 {
        margin-bottom: 20px; /* Ajusta el margen inferior según sea necesario */
    }
    .login-form label {
        display: block;
        margin-bottom: 5px;
    }

    .login-form input {
        width: 100%;
        margin-bottom: 10px;
    }

    .login-form button {
        width: 100%;
    }

.forgot-password-container {
    text-align: right;
    margin-top: 10px; /* Ajusta este margen según sea necesario */
}

.forgot-password-link {
    text-decoration: none;
    color: blue; /* Ajusta el color del enlace según sea necesario */
    cursor: pointer; /* Cambia el cursor a una mano cuando pase sobre el enlace */
}

    .forgot-password-link:hover {
        text-decoration: underline;
    }
