body{
    font-family: sans-serif;
    margin-inline: auto;
    text-align: center;
    background-color: black;
}
h1{
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
table{
    margin-top: 10px;
    transition: opacity 3s;
    text-align: center;
    transition: ease-in .3s;
}
input, button{
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: white;
}
input{
    background-color: aquamarine;
    color: white;
    max-width: 400px;
}
button{
    background-color: violet;
    color: white;
    width: 100%;
    transition: filter .3s;
}
button:hover{
    filter: brightness(1.3);
    cursor: pointer;

}
#msgemail, #msgcpf{
    width: 95px;
    transition: opacity 2s;
}
