/* Estilos CSS */

.form {
    max-width: 400px;
    margin: 0 auto; /* Centra el formulario horizontalmente */
    background-color: rgba(7, 29, 73, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-top: 100px;
}

/* Estilos específicos para dispositivos móviles */
@media only screen and (max-width: 600px) {
    #backImgn {
        padding: 50px; /* Reduce el espacio alrededor del formulario */
    }

    .form {
        max-width: 300px; /* Reduce el ancho del formulario */
    }
}



.header{
    height: 50px;
    background-color: #5b89b4;
}

.form-container{
    margin-top: 15px;
}

.form-card{
    width: 80%;
    margin: auto;
}

.btnLoading{
    display: none;
}

#containerError{
    display: none;
}

.formError{
    color: lightslategrey;
    border: solid 1px darkred;
    background-color: rgba(175, 0, 0, 0.3);
}

#btnVldrUsro{
    display: none;
}

.alert-danger {
    margin: auto !important;
    width: 90%;
}

.btn-primary {
    background-color: #202945; /* Color de fondo por defecto */
    border-color: #202945; /* Color del borde */
    color: #ffffff; /* Color del texto */
}

.btn-primary:hover {
    background-color: #5b89b4; /* Color de fondo al pasar el mouse */
    border-color: #5b89b4; /* Color del borde al pasar el mouse */
}
