/* OVERLAY */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  overflow-y: auto;
}

/* POPUP BOX */
.popup-content {
  background: #fff;
  width: 700px;
  max-width: 95%;
  max-height: 90vh;
  margin: auto;
  display: flex;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

/* LEFT IMAGE */
.popup-left {
  width: 50%;
}
.popup-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT FORM */
.popup-right {
  width: 50%;
  padding: 20px;
  overflow-y: auto;
}

/* FORM ELEMENTS */
.popup-right h3 {
  margin-bottom: 15px;
}

.popup-right input,
.popup-right textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* SUBMIT BUTTON */
.popup-right button {
  width: 100%;
  padding: 10px;
  background: #007bff;
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

/* CAPTCHA */
.captcha-group {
  margin-bottom: 15px;
}
.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.captcha-box img {
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.refresh-captcha {
  font-size: 14px;
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
}

/* SCROLLBAR */
.popup-right::-webkit-scrollbar {
  width: 6px;
}
.popup-right::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    width: 95%;
    max-height: 95vh;
  }

  .popup-left {
    height: 180px;
    width: 100%;
  }

  .popup-right {
    width: 100%;
    max-height: calc(95vh - 180px);
  }
}
/* OVERLAY */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* POPUP BOX */
.popup-content {
  background: #fff;
  width: 700px;
  max-width: 95%;
  max-height: 90vh;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

/* LEFT IMAGE */
.popup-left {
  width: 50%;
}
.popup-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT FORM */
.popup-right {
  width: 50%;
  padding: 20px;
  overflow-y: auto;
}

/* FORM */
.popup-right input,
.popup-right textarea,
.popup-right button {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* ====== MOBILE FIX ====== */
@media (max-width: 768px) {

  .popup {
    align-items: flex-start;
    padding: 10px 0;
  }

  .popup-content {
    flex-direction: column;
    width: 95%;
    max-height: 95vh;
  }

  /* IMAGE SMALL HEIGHT */
  .popup-left {
    width: 100%;
    height: 160px;
  }

  .popup-left img {
    height: 160px;
  }

  /* FORM SCROLL FIX */
  .popup-right {
    width: 100%;
    padding: 15px;
    max-height: calc(95vh - 160px);
    overflow-y: auto;
  }

}


