.form_area_banner input {
    background: #fff !important;
}
.popup-container-bg {
            background-image: url('https://www.theedwardhotel.co.uk/bg-img.jpg');
            /* Optional BG if needed */
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #exit_popup_v2 {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.65);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow-y: auto;
            transition: all 0.4s ease;
        }

        #exit_popup_v2.show {
            display: flex;
            animation: fadeIn 0.4s ease forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        .popup-box-v2 {
            background: #fff;
            display: flex;
            flex-direction: row;
            max-width: 700px;
            width: 100%;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            flex-wrap: wrap;
            z-index: 1;

        }
        .popup-box-v2::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: #000;
            clip-path: polygon(0 0, 70% 0, 66% 100%, 0% 100%);
            z-index: 2;
        }

        .popup-box-v2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: #000;
            clip-path: polygon(0% 0, 66% 0, 70% 100%, 0 100%);
            z-index: 2;
        }

        .popup-left {
            background-color: #fff;
            padding: 30px;
            flex: 1 1 55%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-right: 15px;
            padding-top: 60px;
            padding-bottom: 60px;
        }

        .content-box {
            background: #f5d7a4;
            border: 2px solid #000;
            border-radius: 20px;
            padding: 20px;
        }

        .popup-left h2 {
    font-size: 28px !important;
    margin: 0 0 10px;
    color: #000;
}

        .popup-left h4 {
            margin: 0 0 20px;
            font-size: 16px;
            font-weight: 600;
					color: #000;
        }

        .popup-left ul {
            list-style: disc;
            padding-left: 20px;
            font-size: 15px;
            line-height: 1.7;
					color: #000;
        }
.popup-left ul li {
    list-style: disc;
	color: #000;
}
        .popup-left ul li span {
            font-size: 13px;
            font-style: italic;
            color: #555;
        }

        .popup-left .book-btn {
            margin-top: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .popup-left .book-btn a {
            background: #f5d7a4;
            color: #000;
            border: none;
            padding: 12px 28px;
            font-size: 16px;
            border-radius: 8px;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: 0.3s ease;
            font-weight: 800;
            border: 1px solid #000;
        }


        .popup-right {
            flex: 1 1 40%;
        }

        .popup-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

       span#closeExitPopup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 40px;
    color: #000000;
    cursor: pointer;
}
