.body{
    background-image: url(../img/fondo-login.jpg);
    background-repeat: no-repeat;
    font-family: sans-serif;
}

.transparente{
    opacity: 0.8;
    -moz-opacity: 0.8;
    filter: alpha(opacity=80);
    -khtml-opacity: 0.8;
}
form{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px;
    display: flex;
    flex-direction: column;
    width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 2px solid #1c5dea;
}
label{
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}
input{
    background-color: transparent; 
    border: none; 
    border-radius: 0;
    border-bottom: 1px solid #ffffff;
    padding: 17px 11px;
    outline: none;
    color: #ffffff;
    font-size: 16px;
}
.btnUsuario{
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
}
.btnUsuario:hover{
    background-color: rgb(255, 255, 255);
}
.Logo_persona{
    margin-left: 50px;
}