main{
    padding-bottom: 1em;
    padding-top: 5em;
}

@media(max-width:468px){
    main{
        padding-bottom: 1em;
        padding-top: 9em;
    }
}

.formulario{
    background-color: #D9D9D9;
    width: min(60em, 100%);
    margin: 0 auto;
    padding: 2em;
    border-radius: 1rem;
}

.formulario fieldset{
    border: none;
}

.formulario legend{
    text-align: center;
    font-size: 1.8em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
    color: black;
}

.campo{
    margin-bottom: 1em;
}

.campo label{
    font-weight: bold;
    margin-bottom: .5em;
    display: block;
}

.campo textarea{
    height: 20rem;
}

.input_text{
    width: 100%;
    border: none;
    padding: 1.5em;
    border-radius: .5rem;
}

/*@media (min-width: 768px){
    .contenedor_campos{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto 20rem;
        column-gap: 1fr;
    }
    .campo:nth-child(3), 
    .campo:nth-child(4), 
    .campo:nth-child(5){
        grid-column: 1 / 3;
    }
}*/

