.login-popup .popup-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-popup .popup-title-icon {
    width: 30px;
    height: 30px;
    margin-top: -21px;
    flex: 0 0 auto;
}

.login-popup .popup-title {
    display: inline-block !important;
    vertical-align: middle !important;
    font-family: Bison, serif !important;
    font-weight: normal !important;
    font-size: 28px !important;
}

.login-popup .custom-content-area {
    margin-bottom: 25px;
}

.login-popup .popup-links {
    text-align: center !important;
    color: #9f9f9f !important;
}

.login-popup .popup-links a {
    color: #9f9f9f !important;
}

.login-popup .btn-row {
    display: flex;
    gap: 10px;
}

.login-popup .btn-row button {
    flex: 1;
}

.login-popup .popup-mobile-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}

.login-popup .popup-mobile-close img {
    width: 30px;
    height: 30px;
    opacity: 0.5;
    filter: grayscale(1) brightness(1.45);
    transition: opacity 0.2s ease, filter 0.2s ease;

}

.login-popup .popup-mobile-close:hover img,
.login-popup .popup-mobile-close:focus-visible img {
    opacity: 1;
    filter: grayscale(1) brightness(1.25);
}

.login-popup .popup-mobile-close.popup-close-desktop {
    display: inline-flex;
	transform: translateX(-5px) translateY(5px);
}

@media (max-width: 600px) {
    .login-popup .popup-mobile-close {
        display: inline-flex;
    }

    .login-popup .btn-row {
        flex-direction: column;
    }

    .login-popup .btn-row button {
        width: 100%;
    }
}
