/*Propiedades para color y letra*/
:root{
    --azul:#000000;
    --azulOscuro:#000000;
    --rojoOscuro:#5E0B15;
    --blanquito:#FCFCFC;
    --fondo:#D9CAB3;
    --blanco:#fff;
    --fuente:'Roboto', sans-serif;

   
}
/* Ajustar las cajas */
html{
    box-sizing: border-box;
}

/*Selector Universal y a los pseudoelementos*/
*,*::after,*::before{
    box-sizing: inherit;
}
/* Cuerpo*/
body{
    font-family: var(--fuente);
    background-color: var(--fondo);
    display: flex;
    align-items: center;
    height: 100vh;
}


/* Se especifica las medidas */
.contenedor{
    margin: 0 auto;
    max-width: 1200px;
    width: 95%;
}

/*Se declara la imagen y su medida*/
.imagen-formulario{
    background-image: url('../img/Olmue.jpg');
    background-position: center center;
    background-size: cover;
    height: 200px;
    flex: 0 0 calc(60%);
    position: relative;

}
/*Se coloca un filtro a la foto*/
/*.imagen-formulario::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;        
    right: 0;  
    background: linear-gradient(to right, rgba(134, 91, 88, 0.5),rgba(134, 91, 88, 0.5));
}
/*Se estiliza el sitio para vista Telefono*/
@media(min-width:768px){
    .imagen-formulario{
        height: auto;
        background-position: right;
    }
}
/*Se estiliza el sitio para vista Tablet*/
@media(min-width:1200px){
    .imagen-formulario{
        background-position: center;
    }
}

/*Se estiliza el sitio para vista Telefono*/
@media(min-width:768px){
    .contenedor-formulario{
        display: flex;
    }
}

/*Medidas del formulario*/
.formulario{
    padding: 50px;
    background-color: var(--azul);
}
/*Se pinta de blanco los textos del formulario*/
.texto-formulario h2, .input label, .password-olvidada a, .texto-formulario p{
    color: var(--blanco);
}
/*Se establece el tamaño del TITULO*/
.texto-formulario h2{
    font-size: 40px;
    text-align: center;
}
/*Se ajusta el tamaño el SUB TITUTLO*/
.texto-formulario p{
    font-size: 22px;
}
/*Los labels se colocan uno de bajo del otro */
.input label{
    display: block;
    font-size: 22px;
    font-weight: bold;
    margin: 20px 0;
}
/*Se estiliza el label de la password olvidada*/
.password-olvidada a{
    display: inline-block;
    margin-top: 20px;
    font-size: 22px;
    text-decoration: none;
}
/*Se edita todas las clases input*/
.input input{
    width: 100%;
    padding: 10px 16px;
    border-radius: 5px;
    outline: none;
}
/*Se edita el BOTON DE LOGEARSE */
.input input[type="submit"]{
    background-color: var(--rojoOscuro);
    color: var(--blanco);
    font-size: 22px;
    font-weight: bold;
    border: none;
    margin-top: 20px;
    transition: background-color .3s ease-in-out;
}
/*Se coloca el cursor en forma de manito en el boton*/
.input input[type="submit"]:hover{ 
    cursor: pointer;
    background-color: var(--blanquito);
    color: black;
}

.error{
    color: #ffffff;
}


.msg_user{
    color:#FE0000;
    font-weight: bold;
    text-align: center;
}

