@font-face {
    font-family: 'Londrina Solid';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/londrinasolid/v10/flUjRq6sw40kQEJxWNgkLuudGfs9GBEUsA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

*{
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Londrina Solid', cursive;
}

header{
    background-color: khaki; 
    height: 4.3rem;
    width: 100%;
}

.bloque1{
    width: 100%;
    height: 4.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bloque1a{
    margin: 0 10px;
}

.bloque1 h1{
    font-size: 2rem;
    font-weight: bold;
}

.logo{
    width: 50px;
    height: 50px;
}




#contenedor_sombra{
    height: 0.2rem;
    width: 100%;
    background-color: darkgrey;   
}

.cuerpo{
    width: 100%;
}

.cuadro{
    width: 40%;
    background-color: gray;
    height: 400px;
    margin: 50px auto;
    text-align: center;
    border-radius: 15px;
}

.cuadro h2{
    color: white;
    padding-top: 20px;
    font-size: 2rem;
}

.formulario{
    width:95%;
    margin:30px 10px 0 10px;
}

label{
    width:100%;
    margin: 10px;
    color: white;
    font-size: 2rem;
    display: block;
}

input{
    width: 80%;
    font-size: 1rem;
    border-radius: 5px;
    padding: 10px;
    text-align: center; 

}

button{
    background-color: white;
    color: black;
    display: block;
    margin: 30px auto;
    padding: 5px 20px;
    font-size: 2rem;
    border-radius: 10px;
}

.input-icons i { 
    position: absolute; 
} 
  
.input-icons { 
    width: 100%; 
    margin-bottom: 5px; 
} 
  
.icon { 
    padding: 10px; 
    min-width: 40px; 
} 

@media only screen and (max-width: 768px)
{
    body{
        background-color: gray;
    }
    .cuadro{
        width: 90%;
    }

    .bloque1{
        width:100%;
    }

    .bloque1 h1{
        font-size: 1.5rem;
       padding-top: 12px;
    }
}



