body{
    background-image: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
}

h1{
    font-family: sans-serif;
    font-weight: bolder;
}

input{
    width: 100%; /*largura*/
    height: 40px;;/*altura*/
    box-sizing: border-box;
    border-radius: 15px; /*arredonda a borda*/
}

#form{
    width: 20%;
}

button{
    background-color: #ac46a1;
    color: white;
    border: none;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    border-radius: 15px;
}

button:hover{ /*hover acao quando poe o mouse em cima do buttom*/
    cursor: pointer;
    background-color: rgb(57, 4, 54) ;
}

h3{
    font-family: sans-serif;
}