body{
    font-family: 'Montserrat', sans-serif;
    background-image: url(../images/pexels-life-of-pix-8892.jpg);
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#formulario{
    width: 50%;
    background: rgba(157, 157, 157, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    padding: 20px;
}
#formulario label{
    color: white;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    font-size: 19px;
    font-weight: 200;
}
.inputForm{
    font-weight: 200;
    border-radius: 5px;
    margin-top: 3px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    height: 30px;
    padding: 2px 3px;
    font-size: 18px;
    outline: none;
    border: none;
    background-color: rgba(16, 16, 16, 0.176);
    border: 1px rgba(0, 0, 0, 0.283) solid;
    border-radius: 5px; 
}
.errorInput{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgb(196, 0, 0);
    margin-left: 2px;
    margin-top: 3px;
    font-weight: 500;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
    -webkit-transition-delay: 9999s;
}
#btnCadastrar{
    width: 100%;
    font-family: 'Montserrat', sans-serif;  
    height: 40px;
    border-radius: 5px;
    border: none;
    background-color: rgb(118, 118, 118);
    color: white;
    border: 1px white solid;
    font-size: 19px;
    cursor: pointer;
    transition: 300ms;
}
#btnCadastrar:hover{
    background-color: rgb(137, 137, 137);
}
.display-none{
    display: none;
}