#lightglass{
    display: none;
    width: 100%;
    height: 100vh;
    background: #28729521;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(9.2px);
    border: 1px solid rgba(255, 255, 255, 0.171);
    z-index: 9;
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
#closeLogin{
    cursor: pointer;
}
#cadastro{
    display: none;
    background-color: rgb(0, 0, 0);
    padding: 10%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    border-radius: 5px;
    width: 60%;
}
#pform a{
    text-decoration: none;
    color: rgb(93, 93, 93);
}
#login{
    display: flex;
    background-color: rgb(0, 0, 0);
    padding: 10%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    border-radius: 5px;
    width: 60%;
}
#login h2, #cadastro h2{
    background: -webkit-linear-gradient(20deg,#ffffff 12%, #8c8c8d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.5em;
}
#login .header, #cadastro .header{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
#login .header i, #cadastro .header i{
    background: -webkit-linear-gradient(20deg,#287395 12%, #287395 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5em;
}
#lightglass form{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
#lightglass form div{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 1%;
}
#lightglass input{
    color: white;
    width: 96%;
    padding: 3% 2%;
    border-radius: 2px;
    background-color: black;
    border: 1px solid rgba(255, 255, 255, 0.142);
}
#login label, #cadastro label{
    margin-top: 3%;
    font-size: .8em;
}
#login button, #cadastro button{
    width: 48%;
    margin-top: 5%;
    font-size: .7em;
    padding: 5% 0%;
    cursor: pointer;
}
.cad{
    background-image: none;
    background-color: rgba(255, 255, 255, 0.121) !important;
    color: rgb(255, 255, 255);
}
label{
    color: white;
    margin-bottom: 2%;
    font-weight: 300;
}
@media (min-width: 768px) {
    #login, #cadastro{
        width: 40%;
        padding: 5%;
    }
}
@media (min-width: 1024px) {
    #login, #cadastro{
        width: 30%;
        padding: 5%;
    }
}
@media (min-width: 1440px) {
    #login, #cadastro{
        width: 20%;
        padding: 3%;
    }
}
@media (min-width: 2560px) {
    #login, #cadastro{
        width: 15%;
        padding: 2%;
    }
}