*{margin: 0;
padding: 0;
box-sizing: border-box;}

form{
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
    font-size: 22px;
    background-color: bisque;
}

.itens{
    width: 35%;
    height: 90%;
    margin-top: 2%;
}

.caixa{
    width: 100%;
    height: 35%;
    margin-top: 2%;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

#submit{
    width: 12%;
    height: 40%;
    border-radius: 15px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}