body.mnp-no-scroll {
    overflow: hidden;
}

.mnp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

.mnp-popup {
    background: #fff;
    width: 100%;
    max-width: 780px;
    display: flex;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    overflow: hidden;
    animation: mnp-fade-in 0.35s ease;
}

@keyframes mnp-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mnp-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    z-index: 2;
}

.mnp-close:hover {
    color: #000;
}

.mnp-left {
    flex: 0 0 45%;
    max-width: 45%;
}

.mnp-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mnp-right {
    flex: 1;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mnp-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #222;
    margin: 0 0 20px;
}

.mnp-list {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

.mnp-list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.mnp-check {
    color: #e0245e;
    font-weight: bold;
    margin-right: 8px;
}

.mnp-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.mnp-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.mnp-input:focus {
    outline: none;
    border-color: #e0245e;
}

.mnp-submit {
    width: 100%;
    background: #fff;
    border: 1px solid #222;
    color: #222;
    padding: 13px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mnp-submit:hover {
    background: #222;
    color: #fff;
}

.mnp-msg {
    margin-top: 12px;
    font-size: 13px;
}

.mnp-msg.success {
    color: #2e7d32;
}

.mnp-msg.error {
    color: #c62828;
}

@media (max-width: 767px) {
    .mnp-popup {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .mnp-left,
    .mnp-right {
        max-width: 100%;
        flex: none;
    }

    .mnp-left img {
        max-height: 220px;
    }

    .mnp-right {
        padding: 25px 20px;
    }
}
