* {
    margin: 0;
    border: 0;
    padding: 0;
}

body {
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

#formularioWrap {
    width: 100%;
    height: 100vh;
    background-color: purple;
    display: grid;
    place-items: center;
}

#formularioWrap>div {
    width: 50vw;
    height: 70vh;
    background-color: white;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 1));
    display: grid;
    grid-template-rows: repeat(7, 1fr);
    grid-template-columns: 0.5fr 2fr;
    gap: 2px;
    background-color: black;
}

#formularioWrap>div>input {
    background-color: white;
    font-size: 2em;
    white-space: nowrap;
}

#formularioWrap>div>label {
    background-color: white;
    font-size: 2em;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#submit{
    grid-column: 1 / span 2;
}

#submit:hover{
    cursor: pointer;
}

#modal{
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100vh;
    display: grid;
    place-items: center;
    z-index: 99;
    display: none;
}

#modal>div{
    width: 25%;
    height: 25vh;
    background-color: white;
}

#modal>div>span{
    font-size: 2em;
    display: inline-flex;
    width: 100%;
    height: 90%;
    text-align: center;
    align-items: center;
    justify-content: center;
}

#modal>div>div{
    font-size: 1.4em;
}

#modal>div>div:hover{
    cursor: pointer;
}