/* centrar form con felxbox */
 .form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url("/static/img/fondo.png");
} 


#login-form {
    border: 1px solid #000000;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    display: block;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.form-container input{
    background-color: white;
}
