/* ===============================
   MAYHAWK CONTACT FORM STYLING
=============================== */

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  padding: 10px 35px 10px 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: var(--font-body, 'Inter', sans-serif);
}

.contact-form label {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 4px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid #ccc;
  border-radius: 9px;
  background-color: #fff;
  transition: border-color 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077e0;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.contact-form button[type="submit"],
.contact-form {
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin:10px 0
}

/* ===============================
   INLINE SVG CHALLENGE – INLINE ROW STYLE
=============================== */

.svg-challenge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.svg-challenge-row svg {
  width: 33px;
  height: auto;
  display: inline-block;
  margin-top:-5px;
}

.svg-challenge-questionmark {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  top: -3px; /* nudges the ? up to align visually */
}

/* ===========================
   Contact form feedback box
   =========================== */

@keyframes fadeInSoft { to { opacity: 1; } }

.contact-form-feedback{
  /* layout */
  text-align:left;

  /* box */
  padding: 11px 21px 0px 21px;
  max-width: 605px;
  border-radius: 9px;
  border: 1px solid transparent;
  min-height: 30px;            /* allows multi-line without clipping */

  /* text */
  font-size: 1rem;
  line-height: 1.4;
  color:#fff;

  /* animation */
  opacity: 0;
  animation: fadeInSoft .95s ease-out forwards;
}

/* Default “blue” (success/info) */
.contact-form-feedback,
.contact-form-feedback.is-success {
  background-color:#0071e3;
  border-color:#0071e3;
}

/* Error (red) */
.contact-form-feedback.is-error {
  background-color:#d92b2b;
  border-color:#d92b2b;
}

/* Optional: warning (amber) */
.contact-form-feedback.is-warning {
  background-color:#b56a00;
  border-color:#b56a00;
}

.contact-form-feedback p{ margin:0; font-weight:500; color:#fff; }

/* ===============================
   EMAIL = OBFUS == CATION 
=============================== */

.email-obfuscated {
  color: #0077e3;
  font-weight: 500;
}

/* ===============================
   HONEY == POT == FIELD
=============================== */

.mayhawk-response {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* ===============================
   MOBILE RESPONSIVENESS
=============================== */

@media screen and (max-width: 640px) {
  .contact-form {
    padding-left: 0px;
    padding-right: 35px;
  }

  .contact-form-feedback {
    padding-left: 0px;
    padding-right: 25px;
  }
}



