*{
    margin: 0;
    padding: 0;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.img_logo{
    
    width: 100%;
    height: auto;
    margin-top: -150px;

}

.area{

    margin-top: 80px;
    width: 650px;
    height: 670px;
    background-color: rgb(80, 79, 79);
    border-radius: 9px;
}

.login{
    margin-top: -155px;
}

.descricao{
    margin-left: 130px;
    font-size: 50px;
    margin-top: -130px;
    margin-bottom: 20px;
    color: #fff;
    font-family: sans-serif;
}

.usuerlogin{

    width: 60%;
    margin-left: 20%;
}

.botao{

    background: white;
    border: solid 2px white;
    border-radius: 8px;
    height: 45px;
    width: 60%;
    margin-top: 30px;
    background-color: #fff;
    margin-left: 20%;
    transition:  all 0.6s ease;
    color: #363636;
    font-size: 22px;
    font-weight: bold;

}

.botao:hover{

    background: linear-gradient(to right, #cac8c8, #808080);
    color: #1C1C1C;  
    font-size:medium;
    font-size: 20px;

}

#recuperarsenha{
    color: #d0c9eb;
    text-decoration: none;
    margin-top: 15px;
    margin-left: 40%;
}

@media(max-width: 1000px) {

    .area{
        margin-top: 0;

    }

    
}

@media(max-width: 600px) {

    .login{
        margin-top: -50px;
    }

    .area{

        width: 100vw;
        height: 100vh;
        margin-top: 40px;

    }

    .img_logo{

        margin-top: -100px;
    
    }

    .usuerlogin{

        width: 90%;
        margin-left: 5%;
        
    }

    

}