/* ==============================
   HARD RESET INSIDE OUR FORM ONLY
   (Elementor/theme override proof)
============================== */
.healing-form-wrap,
.healing-form-wrap * {
  box-sizing: border-box !important;
}

.healing-form-wrap {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  padding: 22px 12px !important;
}

/* Card */
.healing-form-wrap .healing-glass {
  width: 100% !important;
  max-width: 560px !important;
  border-radius: 28px !important;
  padding: 40px 36px !important;

  background: linear-gradient(135deg,
    rgba(255,255,255,0.75),
    rgba(255,220,240,0.85)
  ) !important;

  border: 1px solid rgba(255,255,255,0.45) !important;

  box-shadow:
    0 35px 80px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.65) !important;

  position: relative !important;
}

/* “Glass highlight” overlay */
.healing-form-wrap .healing-glass::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  pointer-events: none !important;

  background:
    radial-gradient(circle at 15% 10%,
      rgba(255,255,255,0.55),
      transparent 55%
    ) !important;
}

/* Title */
.healing-form-wrap .healing-glass h2 {
  margin: 0 0 8px !important;
  text-align: center !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
}

.healing-form-wrap .healing-glass p {
  margin: 0 0 26px !important;
  text-align: center !important;
  font-size: 14px !important;
  color: rgba(0,0,0,0.75) !important;
}

/* Fields */
.healing-form-wrap .healing-field {
  margin-bottom: 18px !important;
}

.healing-form-wrap .healing-payment-form input {
  width: 100% !important;

  /* kill theme styles */
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;

  border: none !important;
  border-bottom: 2px solid rgba(0,0,0,0.35) !important;

  padding: 14px 6px !important;
  font-size: 15px !important;
  line-height: 1.4 !important;

  color: #111 !important;
  border-radius: 0 !important;
}

.healing-form-wrap .healing-payment-form input::placeholder {
  color: rgba(0,0,0,0.72) !important;
  opacity: 1 !important;
}

.healing-form-wrap .healing-payment-form input:focus {
  border-bottom-color: #ff4fa0 !important;
}

/* Button */
.healing-form-wrap .healing-pay-btn {
  display: block !important;
  width: fit-content !important;
  margin: 26px auto 14px !important;

  border: none !important;
  border-radius: 999px !important;

  padding: 14px 42px !important;

  background: linear-gradient(135deg, #ff4fa0, #ff7ac8) !important;
  color: #fff !important;

  font-size: 15px !important;
  font-weight: 700 !important;

  cursor: pointer !important;

  box-shadow: 0 14px 30px rgba(255,79,160,0.35) !important;
}

.healing-form-wrap .healing-pay-btn:hover {
  transform: translateY(-1px) !important;
}

/* Footer note */
.healing-form-wrap .healing-note {
  text-align: center !important;
  font-size: 13px !important;
  color: rgba(0,0,0,0.75) !important;
}

/* Responsive */
@media (max-width: 520px) {
  .healing-form-wrap .healing-glass {
    padding: 28px 18px !important;
    border-radius: 22px !important;
  }

  .healing-form-wrap .healing-glass h2 {
    font-size: 22px !important;
  }
}
