body {
    background-color: bisque;
}

.body {
    display: flex;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 1em;
    margin-top: 3em;
    padding: 2em;
    background-color: rgb(233, 179, 129);
    min-width: 20em;
    min-height: 30em;
}

.campo {
    height: 3em;
    border-radius: 5px;
    border: solid 1px rgb(99, 99, 99);
}

.container2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

select {
    height: 3em;
    border-radius: 5px;
}

label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: larger;
}

button{
    background-color: rgb(102, 152, 243);
    border: none;
    border-radius: 5px;
    font-size: larger;
    color: white;
    padding: 0.5em;
    margin-right: 1em;
    margin-top: 1em;
}

button:hover{
    background-color: aliceblue;
    color: rgb(102, 152, 243);
}

textarea{
    border: none;
    border-radius: 5px;
}