*{
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'DynaPuff', cursive;
}
main{
    background-image: radial-gradient(#e5e5e5 2px, transparent 2px), radial-gradient(#e5e5e5 2px, transparent 2px);
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
    background-color: #ffffff;
    height: 140vh;
}
h1{
    text-align: center;
}
select,input{
    padding: 10px;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0.247);
    font-size: 16px;
}
.formulario{
    width: 90%;
    margin-inline: auto;
    padding: 5px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    box-shadow: 3px 4px 15px -2px rgba(0,0,0,0.76);
    -webkit-box-shadow: 3px 4px 15px -2px rgba(0,0,0,0.76);
    -moz-box-shadow: 3px 4px 15px -2px rgba(0,0,0,0.76);
}
@media (min-width:768px) {
    .formulario{
        padding: 25px;
        width: 75%;
    }
}
@media (min-width:992px) {
    .formulario{
        width: 50%;
    }
}
.fieldset{
    border-bottom: 5px dotted rgba(107, 107, 107, 0.334);
}
.formulario .fieldset:last-of-type{
    border-bottom: none;
}
.titulo{
    text-align: center;
    font-size: 20px;
    padding-block: 15px;
}
.campo{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.label--pais{
    display: flex;
    gap: 10px;
}
.btn--enviar{
    background-color: rgb(1, 1, 183);
    color: white;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    width: auto;
}
.btn--enviar:hover{
    background-color: rgb(0, 0, 65);
}
/* Modal */
.modal{
    background-color: rgba(0, 0, 0, 0.658);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -150vh;
    height: 150vh;
    width: 100%;
    overflow-y: scroll;
}
.modal--contenedor{
    background-color: white;
    padding: 15px;
    text-align: center;
}
.modal--contenedor p{
    font-size: 30px;
    margin-top: 20px;
}
.modal--dinamico{
    top: 0;
}
.finalizar{
    cursor: pointer;
    padding: 5px;
    background-color: rgb(71, 119, 0);
    color: white;
    border-radius: 10px;
}