/* Overlay */

.mh-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(8,16,32,.72);
    backdrop-filter:blur(8px);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
}

.mh-popup-overlay.active{
    opacity:1;
    visibility:visible;
}

/* Popup */

.mh-popup-box{

    width:100%;
    max-width:1050px;
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    display:flex;
    animation:popupScale .35s ease;
    box-shadow:0 40px 100px rgba(0,0,0,.30);
    position:relative;

}

@keyframes popupScale{

    from{

        transform:translateY(40px) scale(.9);
        opacity:0;

    }

    to{

        transform:translateY(0) scale(1);
        opacity:1;

    }

}

/* Left */

.mh-popup-left{

    width:42%;
    background:linear-gradient(135deg,#1c2238,#283b63);
    padding:60px 45px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;

}

.mh-popup-left h2{

    color:#fff;
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;

}

.mh-popup-left p{

    color:rgba(255,255,255,.85);
    line-height:1.8;

}

/* Right */

.mh-popup-right{

    width:58%;
    padding:55px;

}

.mh-popup-right input,
.mh-popup-right textarea{

    width:100%;
    padding:18px 22px;
    border:1px solid #ddd;
    border-radius:12px;
    margin-bottom:18px;
    font-size:16px;
    transition:.3s;

}

.mh-popup-right input:focus,
.mh-popup-right textarea:focus{

    border-color:#ff6b57;
    box-shadow:0 0 0 4px rgba(255,107,87,.12);
    outline:none;

}

.mh-popup-right textarea{

    min-height:170px;
    resize:none;

}

.mh-popup-right button{

    width:100%;
    height:58px;
    border:none;
    border-radius:12px;
    background:#ff6b57;
    color:#fff;
    font-size:18px;
    font-weight:700;
    transition:.3s;

}

.mh-popup-right button:hover{

    background:#ef5b46;
    transform:translateY(-2px);

}

/* Close */

.mh-popup-close{

    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#f3f3f3;
    font-size:22px;
    cursor:pointer;
    transition:.3s;

}

.mh-popup-close:hover{

    background:#ff6b57;
    color:#fff;
    transform:rotate(90deg);

}

/* Responsive */

@media(max-width:991px){

.mh-popup-box{

flex-direction:column;

max-width:94%;

}

.mh-popup-left,
.mh-popup-right{

width:100%;

}

.mh-popup-left{

padding:45px 30px;

}

.mh-popup-right{

padding:30px;

}

}