/*------------------------------------
Estilos de login 
--------------------------------------*/

body{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box{
    background: white;
    padding: 35px;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgb(0,0,0,0.2);
    text-align: center;
    justify-content: center;
}

h2{
    margin-bottom: 25px;
    color: #1e3a8a;
}

.input-group{
    text-align: left;
    margin-bottom: 18px;

}

.input-group label{
    font-weight: bold;
    color: #1e3a8a;

}
.input-group input{
   
    width: 100%;
    padding: 10px;
    border: 1px solid#94a3b8;
    border-radius: 6px;
    margin-top: 5px;


}

.btn-login{
    width: 100%;
    padding: 12px;
    background: #1e3a8a;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    margin-top: 15px;
}

.btn-login:hover{
    background: #172554;

}

.link{
    display: block;
    margin-top: 15px;
    color: #1e3a8a;
    text-decoration: none;
}

.link:hover{
    text-decoration: underline;
}


.mensaje-ayuda{
    font-size: 13px;
    color:#6c757d;
    margin-top:  4px;
    display: block;

}