.popup-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
}

.popup-content {
    display: flex;
    background-color: #fff;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
    animation: fadeIn 0.5s ease;
    z-index: 9999999;
}

.popup-left img {
  width: 100%;
  height: 100%;
}

.popup-right {
  width: 100%;
  padding: 20px;
  text-align: center;
}

.popup-right .highlight {
  color: #ff7a00;
  font-weight: bold;
}

.popup-right .amount {
  font-size: 24px;
  color: #ff7a00;
  margin-bottom: 15px;
}

.popup-right input {
  width: 80%;
  padding: 10px;
  margin: 10px auto;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.popup-right .submit-button {
  width: 60%;
  background: none;
  border: none;
  cursor: pointer;
}

.popup-right img {
  width: 100%;
} 

.popup-right .bg-form{
  margin-top: 180px;
}

.popup-right {
    background: url(/Content/PopupTH/images/Pop-up-web-right-noform.png);
    background-size: 100%;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  z-index: 1001;
}

.popup-close:hover {
  color: #ff0000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .popup-content { flex-direction: column; }
  .popup-left, .popup-right { width: 100%; }
}
