.form-overlay {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.form-overlay.active {
  display: flex !important;
}

.close-circle {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 34px;
  height: 34px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid #fff;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  z-index: 10001;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  position: relative;
  overflow: visible;
}
