section{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main{
    width: 40vw;
    display: flex;
    flex-direction: column;
}

a{
    text-decoration: none;
    color: #ffffff;
}

h1,h2,h3,p,a{
    font-family: 'verdana';
}

main :nth-child(1){
    margin-top: 5vh;
}

button{
    border: none;
    background-color: #4D72DF;
    color: #ffff;
    border-radius: 6px;
    margin-top: 2vh;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    height: 40px;
    transition: all 1.01s;
}

button:hover{
    color: #ffffff;
    background-color: #404dff;
    scale: 1.02;
}

textarea{
    resize: none;
    width: 40vw;
    border: none;
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

input{
    border: none;
    padding: 10px;
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);

}

.btnVoltar{
    width: 15vw;
}

.btnVoltar:hover{
    width: 15vw;
}

label{
    text-align: center;
}

::placeholder{
    text-align: center;
}