.custom-login-popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 999999999999;
    transition: .6s;
}

.custom-login-popup.open {
    opacity: 1;
    pointer-events: all;
}

.custom-login-popup .login-popup-container {
    position: absolute;
    top: 0;
    right: -100%;
    height: 100%;
    width: 450px;
    max-width: 90%;
    border: 1px solid var(--color-3);
    background: var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 1;
    transition: .6s;
}


.custom-login-popup.open .login-popup-container {
    right: 0;
}

.custom-login-popup .login-popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .6);
    width: 100vw;
    height: 100vh;
    cursor: pointer;
}

.custom-login-popup .login-popup-container .login-popup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--color-3);
    position: relative;
    min-height: 55px;
}

.custom-login-popup .login-popup-container .login-popup-header .login-popup-title {
    text-align: center;
    color: var(--border-color);
}

.custom-login-popup .login-popup-container .login-popup-header button {
    color: var(--border-color);
    font-size: 25px;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 !important;
}

.custom-login-popup .login-popup-container .login-popup-body {
    margin-top: 30px;
    padding: 0 20px;
}

.custom-login-popup .login-popup-container p.register-link {
    text-align: center;
}

.custom-login-popup .login-popup-container p.register-link a {
    display: inline-block;
    font-weight: bold;
    border-bottom: 1px solid var(--color-3);
    margin-bottom: 30px;
}

.custom-login-popup .login-popup-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.custom-login-popup .login-popup-container form p {
    width: 100%;
}

.custom-login-popup .login-popup-container form p input {
    width: 100%;
}

.custom-login-popup .login-popup-container form p input[type="submit"] {
    background: var(--color-3);
    border: 1px solid var(--color-3);
    color: var(--border-color);
    transition: .4s ease-in-out;
}

.custom-login-popup .login-popup-container form p input[type="submit"]:hover {
    background: transparent;
    color: var(--color-3);
}

.custom-login-popup .login-popup-container #login-response {
    font-weight: bold;
    text-align: center;
}