#Login, #Signin{
    background-color: rgba(0, 0, 0, 0.511);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

#Loginform, #Signinform {
    display: flex;
    flex-direction: column;
    background-color: rgb(18, 18, 19);
    border: solid 1px rgb(255, 255, 255) ;
    height: fit-content;
    padding: 30vh 3vw;
}

#Username, #Password, #Confirmation, #CreateUsername, #CreatePassword {
    margin: 5px;
    height: 2rem;
    width: 15rem;
}

.entreAqui {
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.entreAqui span {
    color: #eb5e28;
    cursor: pointer;
    text-decoration: underline;

}


#menubtn {
        background-color: transparent;
        
    color: rgb(255, 255, 255);
    padding: 10px;
    font-size: 30px;
    border: none;
    cursor: pointer;
    margin-left: 20px;
}
#menuContainer { 
    margin-left: 30px;
    display: none;
    z-index: 0;
    background-color: #39373b;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.05)

}
#menuContainer span {
    color: rgb(255, 255, 255);
    padding: 5px 16px;
    text-decoration: none;
    display: block;
    
}

#menu:hover #menuContainer {
    display: block;
    
}
#menu:hover #menubtn .fa-bars{
    color: #eb5e28;
}

#menusignin:hover, #menulogin:hover, #Logout:hover{
    color: #eb5e28;
    
}