.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  display: flex;
  width: 900px;
  max-width: 95%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  align-items: stretch; /* IMPORTANT */
}

/* LEFT FULL HEIGHT */
.popup-left {
  width: 50%;
  height: auto;
  display: flex;
}

.popup-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-right {
  width: 50%;
  padding: 30px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  cursor: pointer;
	background: #000;
    border-radius: 100%;
    color: #FFF;
    font-size: 28px;
    font-weight: 800;
    right: 5px;
    width: 35px;
    height: 35px;
    text-align: center;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
button.popup-btn{
background-color: transparent;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    background-image: linear-gradient(45deg, #4F46E5 0%, #06B6D4 100%);
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #FFFFFF;
    border-radius: 30px 30px 30px 30px;
    padding: 17px 35px 17px 35px;
	color:#fff;
}
@media(max-width:768px){
  .popup-box { flex-direction: column;max-width:100%; }
  .popup-left, .popup-right { width: 100%; }
}