/* Overlay */
 .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
} 

.popup-overlay.active {
  display: flex;
}

/* Popup Box */
.popup-box {
  background: #111; /* Black */
  padding: 25px;
  border-radius: 8px;
  width: 500px;
  max-width: 90%;
  position: relative;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Header */
.popup-header {
  margin-bottom: 15px;
}
.form-title {
  font-size: 26px;
  font-weight: 700;
  color: #ff6600; /* Orange */
}
.form-subtitle {
  font-size: 14px;
  color: #ddd;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #fff !important;
  cursor: pointer;
}

/* Form Fields */
.form-control, .form-select {
  background: #fff;
  border: 1px solid #ccc;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
}

/* Submit Button */
.submit-btn {
  background: #ff6600;
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 5px;
}
.submit-btn:hover {
  background: #e65c00;
}
