:root{
    --azul:#023246;
    --azulOscuro:#ffffff;
    --azulGris:#ffffff;
    --blanco:#fff;
    --fuente:'Quicksand', sans-serif;
}
html{
    box-sizing: border-box;
}

*,*::after, *::before{
    box-sizing: inherit;
}

body{
    font-family: var(--fuente);
    background-color:#016944;
    display: flex;
    align-items: center;
    height: 100vh;
    border-width: 20px;
    border-style: solid;
    border-color: #023246;
}

.contenedor{
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
}

.imagen-formulario{
    background-image: url('../img/bg6.jpg');
    background-position: center center;
    background-size: cover;
    height: 200px;
    flex: 0 0 calc(60%);
    position: relative;
    border-width: 20px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    
}
.imagen-formulario::before{
   content: '';
  /* position: absolute;*/
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   background: linear-gradient(to right,rgba(144, 240, 157, 0.5), rgba(2, 104, 36, 0.5) );
   
}

@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(--azul);
    border-width: 10px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    
}
.texto-formulario h2, .input label, .password-olvidada a, .texto-formulario p{
    color: var(--blanco);
}
.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: 20px 0;
}
.password-olvidada a{
    display: inline-block;
    margin-top: 20px;
    font-size: 22px;
}
.input input{
    width: 100%;
    padding: 10px 16px;
    border-radius: 50px;
    outline: none;
}
.input input[type="submit"]{
    background-color:#6eb3f3;
    color:black;
    font-size: 22px;
    font-weight: bold;
    border: none;
    margin-top: 20px;
    transition: background-color .3s ease-in-out;
}
.input input[type="submit"]:hover{
  
    cursor: pointer;
    background-color:#026843;
    color:#ffffff;
}