.qz-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(4, 0, 11, .6);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.qz-popup-overlay.qz-active {
    opacity: 1;
    visibility: visible;
}

.qz-popup {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    transform: scale(.92);
    transition: transform .3s ease;
}

.qz-popup-overlay.qz-active .qz-popup {
    transform: scale(1);
}

.qz-popup-row {
    display: flex;
    flex-wrap: wrap;
}

.qz-popup-col {
    width: 50%;
}

.qz-popup-col-image {
    min-height: 420px;
    background: linear-gradient(135deg, #6222cc, #9b6ef3);
    background-size: cover;
    background-position: center;
}

.qz-popup-col-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qz-popup-heading {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.3;
    color: #04000b;
}

.qz-popup-desc {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #726d7b;
}

.qz-popup-form input[type="text"],
.qz-popup-form input[type="email"],
.qz-popup-form input[type="tel"],
.qz-popup-form input[type="number"],
.qz-popup-form textarea,
.qz-popup-form select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.qz-popup-form input[type="submit"],
.qz-popup-form button {
    padding: 13px 20px;
    border: none;
    border-radius: 6px;
    background: #6222cc;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.qz-popup-form input[type="submit"]:hover,
.qz-popup-form button:hover {
    background: #4e1aa3;
}

.qz-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 34px;
    /* height: 34px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: #04000b;
    font-size: 22px;
    /* line-height: 1; */
    cursor: pointer;
    transition: background .2s;
}

.qz-popup-close:hover {
    background: #fff;
}

html.qz-popup-lock,
html.qz-popup-lock body {
    overflow: hidden !important;
    height: 100%;
}

@media (max-width: 767px) {
    .qz-popup-col {
        width: 100%;
    }

    .qz-popup-col-image {
        min-height: 160px;
    }

    .qz-popup-col-form {
        padding: 28px 24px;
    }
}
