*{
    font-family: Arial, Helvetica, sans-serif;
}

body{ 
    background-color:black ;
    background-image:linear-gradient(#0000008a, #000000af), url(https://i.redd.it/zjgs096khv591.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    height: 100vh;
    
}
.logo{
   position: absolute; 
   top: 20px;
   left: 50%;
   transform: translatex(-50%);
   
}
main{
    text-align: left;
    margin-left: 40px;
}
.login{
    color: white;
    background-color: #000000bb;
    padding: 5%;
    text-align: center;
    width: 300px;
    height: 350px;
    border-radius: 3%;
    position: fixed;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);    
}
input{
    background-color: #414141;
    width: 220px;
    height: 30px;
    border: none;
    border-radius: 5px; 
    outline: none;
    color: white;
}
input:focus{
    border: 2px solid #ff0000bb;
}
input:hover{
    background-color: #414141d2;
}
button{
    background-color: rgb(236, 27, 27);
    width: 220px;
    height: 30px;
    color: white;
    border: none;
    outline: none;
    border-radius: 5px;
}
button:hover{
    background-color: #920000;
    color: #fffffffa;
}
p, label[for="aceito"]{
    display: flex;
    font-size: 12px;
    color: #797979; 
    margin-left: 40px;  
    align-items: center;
}
input[type="checkbox"]{
    width: 10px;
    accent-color: red;
    border: none;
    outline: none;
    background-color: #797979;
}