body{
    background-color: #373737;
    color: white;
    display: flex;
    font-family: Arial, Helvetica, sans-serif;
    
}



.container {
    width: 470px;
    height: 608px;
    margin-left: 70vh;
    margin-top: 10vh;
    background-color: #313131;
    border-radius: 0px 25px 25px 25px;
    box-shadow: 0px 0px 20px rgb(15, 15, 15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2{
    text-align: center;
}



.logar input{
    height: 50px;
    width: 396px;
    margin-bottom: 30px;
    margin-left: 29px;
    background-color: #535353;
    border-radius: 0px 15px 15px 15px;
    border: 1px solid #5E83FF;
    color: whitesmoke;
    transition: 0.5s;
}

.logar input:hover{
    border: 1px solid #ccc;
    background-color: #666666;

}
.logar label{
    margin-left: 25px;
    font-size: 20px;
}

.nome {
     margin-top: 30px;

}


.botao input{
    border: none;
    background-color: #5E83FF;
    font-size: 28px;
    width: 250px;
    height: 60px;
    border-radius: 0px 15px 15px 15px;
    box-shadow: 0px 0px 20px #5E83FF;
    margin-top: 50px;
    transition: 1s;
}

.botao input:hover{

    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    box-shadow: 0px 0px 25px #ffffff;
}