.contenedor-body{
    background:url(../fotos/Login/FONDO.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    align-content:center;
}

.contenedor-login{
  
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    height: auto;
}

.formulario-ingreso{
    background-color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding:20px;
    border-radius: 20px;
}
.logo img{
    width:200px;
    height:100px;
    margin-bottom: 40px;
}

/*=======USUARIO========*/
.div-usuario{
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items:center;
}

.txt-usuario{
    width: 35%;
    font-family: MANBold;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--color-black);
    margin-right:5%;
    text-align:right;
}

.inp-usuario{
    width: 60%;
    height: 35px;
    border-radius: 10px;
    border-width: 1px;
    font-family:MANRegular;
}

/*=======CONTRASENA========*/

.div-contrasena{
    display: flex;
    width: 100%;
    flex-direction: row;
    margin-top:10px;
    align-items:center;
}

.txt-contrasena{
    width: 35%;
    font-family: MANBold;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--color-black);
    margin-right:5%;
    text-align:right;
}

.inp-contrasena{
    width: 60%;
    height: 35px;
    border-radius: 10px;
    border-width: 1px;
    font-family:MANRegular;
}

/*=========BTN INGRESAR ==========*/
.div-ingresar{
    display: flex;
    width: 100%;  
    margin-top:30px;
    align-items:center;
    justify-content:center;
    
}
.btn-ingresar{
    width: 80%;
    height: 35px;
    color: white;
    background-color: var(--color-black);
    font-family:MANRegular;
}