:root{
    --blanco:#ffffff;
    --rosaboton:#000000;
    --negrof:#000000;
    --fuente:'Avenir', black;
}

@font-face {
    font-family: 'Avenir';
    src: url("../fonts/AvenirBlack.ttf");
}

html{
    box-sizing: border-box;
}

*,*::after, *::before{
    box-sizing: inherit;
}

body{
    font-family: 'Avenir';
    background-image: url("../images/Rosa.png");
    display: flex;
    align-items: center;
    height: 100vh;
}


.contenedor{
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0px 0px 30px black;
}

.imagen-formulario{
    background-image: url("../images/frontlog.png");
    background-position: center center;
    background-size: cover;
    height: 200px;
    flex: 0 0 calc(68%);
    position: relative;
    
}
.imagen-formulario::before{
   content: '';
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;

   
}

@media(min-width:768px){
    .imagen-formulario{
        height: auto;
        background-position: right;
    }

}
@media(min-width:1200px){
    .imagen-formulario{
        background-position: center;
    }
}

@media(min-width:768px){
    .contenedor-formulario{
        display: flex;
    }
}

.formulario{
    padding: 50px;
    background-color: var(--blanco);
}
.texto-formulario h2, .input label, .password-olvidada a, .texto-formulario p, .ayuda-contacto a{
    color: var(--negrof);
}
.texto-formulario h2{
    font-size: 40px;
    text-align: center;
}
.texto-formulario p{
    font-size: 22px;
    text-align: center;
}
.input label{
    display: block;
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
}
.password-olvidada a{
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
}

.ayuda-contacto a{
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
}
.input input{
    width: 100%;
    padding: 12px 16px;
    border-radius: 5px;
    outline: none;
}
.input input[type="submit"]{
    background-color: var(--rosaboton);
    color: white;
    font-size: 22px;
    font-weight: bold;
    border: none;
    margin-top: 20px;
    
}
.input input[type="submit"]:hover{
  
    cursor: pointer;
    
}


/* ------------------------ESTILOS DE PRINCIPAL ---------------------*/

