html{
    box-sizing: border-box;
}

*, *:before, *:after{
    box-sizing: inherit;
}

*{
	font-family:'Microsoft Sans Serif';

}

.body{
    display: grid;
    grid-template-rows: repeat(3, 1fr);
}

.html{
    background-image: url(../img/28d5ebe9d5f9903de84e8eefd8f007b3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    
}
.formulario{
    margin-top: 40rem;
    background-color: white;
    border-radius: 2rem;
    margin: 0 auto;
    width: 80%;
    text-align: center;
    grid-row: 2 / 3;
}



.formulario fieldset{
    border: none;
}

.formulario legend{
    padding: 1rem;
    font-size: 30px;
    font-weight: 700;
}

@media (min-width: 480px) {

    .formulario legend{
        padding: 2rem;
        color: black;
        text-align: center;
        font-size: 36px;
        text-transform: uppercase;
        font-weight: 700;
    }

}

.input-text{
    margin-top: 8px;
}

@media (min-width: 480px) {
   .contenedor-campos{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
   }
}

.input-text{
   width: 80%;  
   padding: 1.5rem;
   border-radius: 0.5rem; 
   height: 0px;
   padding: 20px;
}

.boton{
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    width: 80%;
    font-family: 'Courier New', Courier, monospace;
    background-color: 083763;
    color: white;
    height: 3rem;
    transition: .4s;
    font-size: 1rem;
    
}
@media (min-width: 480px) {
   .boton{
    margin-top: 2rem;
    width: 30%;
   }
}

.boton:hover{
    background-color: white;
    color: 083763;
}

