:root{
    --azul:#134074;
    --azulOscuro:#0B2545;
    --azulGris:#8DA9C4;
    --blanco:#fff;
    --fuente:'Quicksand', sans-serif;
}
html{
    box-sizing: border-box;
}

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

body{
    font-family: var(--fuente);
    background-color: #eaf0e6 ;
    display: flex;
    align-items: center;
    height: 100vh;
}

.contenedor{
    margin: 0 auto;
    max-width: 1200px;
    width: 95%;
}

.imagen-formulario{
    background-image: url('../img/bg.jpg');
    background-position: center center;
    background-size: cover;
    height: 150px;
    flex: 0 0 calc(60%);
    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: 40px;
    background-color: rgb( 255, 255, 255);
    border-width:4px;
    border: 2px solid grey;
    border-color: #44a000 ;
    border-radius:0px 22px 22px 0px;
}
.texto-formulario h2, .input label, .password-olvidada a, .texto-formulario p{
    color: black;
}
.texto-formulario h2{
    font-size: 22px;
    text-align: center;
    color:  #337303 ;
}
.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: 5px;
    outline: none;
}
.input input[type="submit"]{
    background-color: rgb(219 253 0);
    color: rgb(19, 19, 19 );
    font-size: 15px;
    font-weight: bold;
    border: none;
    margin-top: 20px;
    transition: background-color .3s ease-in-out;
	
}
.input input[type="submit"]:hover{
  
    cursor: pointer;
    background-color: rgb(192, 250, 124 );
	color: rgb(19, 19, 19 );
}

.input-seguimiento a{
	width: 100%;
    padding: 10px 45px;
     outline: none;
    background-color: rgb(   146, 229, 84 );
    color: rgb( 40, 94, 0);
    font-size: 15px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color .3s ease-in-out;
    border-width:4px;
    border: 2px solid grey;
    border-color: #fff;
    border-radius:3px 3px 3px 3px;
}

.input-seguimiento a:hover{
  
   cursor: pointer;
    background-color: rgb(  65, 153, 0  );
    color: rgb( 255, 255, 255 );
    text-decoration: none;
}

.input-tramite a{
	width: 100%;
    padding: 10px 55px;
     outline: none;
    background-color: rgb(   146, 229, 84 );
    color: rgb( 40, 94, 0);
    font-size: 15px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color .3s ease-in-out;
    border-width:4px;
    border: 2px solid grey;
    border-color: #fff;
    border-radius:3px 3px 3px 3px;
}

.input-tramite a:hover{
  
    cursor: pointer;
    background-color: rgb(  65, 153, 0  );
	color: rgb( 255, 255, 255 );
    text-decoration: none;
}

.input-login a{
	width: 100%;
    padding: 10px 25px;
    outline: none;
    background-color: rgb(  65, 153, 0  );
    color: rgb( 255, 255, 255 );
    font-size: 15px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color .3s ease-in-out;
    border-width:4px;
    border: 2px solid grey;
    border-color: #419900;
    border-radius:3px 3px 3px 3px;
}

.input-login a:hover{
  
    cursor: pointer;
    background-color: rgb(192, 250, 124 );
	color: rgb(19, 19, 19 );
    text-decoration: none;
}


