/*Css login*/
.modal-login {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2d34466b; /* Fondo oscuro con opacidad */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 20px; /* Espaciado para evitar que el contenido toque los bordes en móviles */
}
.modal-contentlogin {
    width: 100%;
    max-width: 400px; /* No excede 400px en pantallas grandes */
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.modal-headerlogin {
    /***/
    height: 60%; /* Ajusta la altura del encabezado */
    background: var(--color-headerlogin); /*  encabezado iniciar sesion*/    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    margin-left: 15px;
    margin-right: 15px;
}

.modal-bodylogin {
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.form-containerlogin {
    width: 100%;
    background:white;
    border-radius: 0 50px 5px 30px;
}

.login-logo {  
    width:80px;   
}
