body{
    display: flex;
    flex-direction: column;
    align-items: center ; 
    justify-content: center;
    height: 100vh;

    background-image: url(../img/imagem.png); 
    background-repeat: no repeat;
    
    background-size: cover;
    background-position: center;
    
}
.body{
    display: flex;
    flex-direction: column;
    align-items: center ; 
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
}
.body-login{
    background-color: rgb(230, 230, 230);
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 450px;
    border-radius: 80px;
    box-shadow: 7px 3px 27px rgba(0, 0, 0, 0.377);

}
.input-custom-linha{
    height: 40px !important;
}

.top-cont{
    text-align: center;
    color: #333333;
}

.top-cont img{
    max-width: 35%;
}

.login-cont{
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.element{
    width: 70%;
    margin-top: 30px;
}

.element label{
    margin-left: 20px;
    font-size: 15px;
}
.botao-entrar{
    background-color: rgb(0, 153, 0);
    padding: 5px 60px;
    font-size: 23px;
    color: white;
    border-radius: 30px;
    border: none;
    box-shadow: 0px 0px 40px 10px rgba(0, 0, 0, 0.226);

}
h3{
        font-size: 20px !important;
    }

.botao-cont{
    text-align: center;
    display: flex;
    align-items: end;
    justify-content: center;
    height: 100px;
}

@media(max-width: 900px){
    .body-login{
        width: 90%;
        border-radius: 50px;
    }

    .botao-cont{
        height: 57px;
    }

    .botao-entrar{
        padding: 6px 23px;
        font-size: 17px;
    }
    .login-cont{
        margin-top: 3px;
    }
    .element label{
    margin-left: 15px;
    font-size: 15px;
    }
    
    .input-custom-linha{
        padding: 0.2rem 1.1rem !important;
    }
    h3{
        font-size: 17px !important;
    }

}