#popupOverlay {

  position: fixed;

  inset: 0;

  background: rgba(0,0,0,0.6);

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 9999;

}

#popupOverlay {
  display: none; /* important */
}

/* Main Popup (COMPACT SIZE) */

.popupContainer {

  background: #fff;

  max-width: 720px;   /* smaller overall */

  width: 90%;

  display: flex;

  border-radius: 12px;

  overflow: hidden;

  position: relative;

}



/* Close Button */

.closeBtn {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 20px;
    cursor: pointer;
    color: white;
    background: #00000094;
    padding: 0px 10px 5px;
    border-radius: 12px;
    z-index: 10;
}



/* LEFT SIDE */

.popupLeft {

  flex: 1;

  padding: 28px;   /* reduced padding */

}



.popupLeft h2 {

  font-size: 24px;   /* smaller heading */

  margin-bottom: 12px;

}



.popupLeft p {

  color: #555;

  margin-bottom: 18px;

  font-size: 15px;

}



.popupLeft input {

  width: 100%;

  padding: 10px;

  margin-bottom: 12px;

  border: 1px solid #ccc;

  border-radius: 6px;

  font-size: 14px;

}



.popupLeft button {

  width: 100%;

  background: #000;

  color: #fff;

  padding: 12px;

  border: none;

  border-radius: 6px;

  cursor: pointer;

  font-size: 15px;

}



.popupLeft a {

  display: block;

  margin-top: 10px;

  text-align: center;

  color: #777;

  text-decoration: none;

  font-size: 13px;

}



/* RIGHT SIDE */

.popupRight {

  flex: 1;

  background: #f4f1ea;

  display: flex;

  /* align-items: center; */

  justify-content: center;

}



.popupRight img {

  max-width: 100%;

  height: auto;

}



/* 📱 MOBILE RESPONSIVE */

@media (max-width: 768px) {

  .popupContainer {

    flex-direction: column;

  }



  .popupRight {

    display: none;

  }



  .popupLeft {

    padding: 22px;

  }

}