body {
    background: #313131;
}
#innerPage {
    width: 100%;
    max-width: 840px;
    margin : 0 auto;
    border-radius: 12px;
    background: #000000;
    box-shadow: 7px 7px 13px 1px #1F2021,
    -10px -9px 11px 1px #1F2021;
}
.form-control {
    background: #000000;
    border: none;
    border-bottom : 1px solid #D4AF37;
    color: #FFFFFF;
    border-radius: 0px;
}
/*Estilo de la imagen*/
#imagen_login {
    background : url('../imagenes/login_imagen.png') no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 75vh;
    width: 100%;
    border-radius: 12px 0px 0px 12px;
}
/*Estilo al boton ingresar*/
#btnIngresar {
    color: #000000;
    font-weight: bold;
    font-size: 16px;
}
/*Estilo de los eventos focus y hover de los inputs*/
#logina:focus, #clavea:focus, #logina:hover, #clavea:hover {
    background: #000000;
    color: #FFFFFF;
    
    -webkit-box-shadow: 0 0 0px 1000px #000000 inset;
    border-bottom : 1px solid #D4AF37;
}
/*Estilo de los inputs*/
#logina, #clavea {
    background: #000000;
    color: #FFFFFF;
}
/*Estilo al autocompletar inputs*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    background: inherit !important;
    -webkit-box-shadow: 0 0 0px 1000px #000000 inset;  
}
input:-webkit-autofill {
  -webkit-text-fill-color: #FFFFFF;
}