.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
}

.loginPopup {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 350px;
    max-width: 90%;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
/* ---- */
.loginPopup {
    height: 450px;
    width: 750px;
    background-color: #2b2a33;
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #daa74b;
}
.loginImage {
    height: 100%;
    display: flex;
    align-items: center;
}
.loginImage img {
    height: 90%;
}
.loginForm {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 5px;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.loginForm {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.userInputLF {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
}
input#login_username, input#login_password {
    display: flex;
    flex: 1;
    border: 1px solid #daa74b;
    background-color: #1c1b22;
}
.loginBtn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #daa74b;
    border-radius: 12px;
    padding: 10px 0px;
}
.loginImageLogo {
    width: 100%;
    display: flex;
    align-items: center;
    height: fit-content;
}
.loginImageLogo img{
    width: 100%;
    height: auto;
}
#errorBox {
    color: red;
    font-size: 10px;
    width: 100%;
}
.forgotPassBTN {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}
.forgotPassBTN p{
    margin: 0;
}
/* [SECTION: mobile] */
@media (max-width: 768px){
    .loginImage {
        display: none;
    }
    .loginPopup {
        height: fit-content;
    }
}