
/* =========================================================
   v2.8.30 — Contact newsletter form only
   Scope: newsletter form inside contact page only.
   ========================================================= */

.contact-newsletter-form-v2830 {
  display: block;
  width: 100%;
  margin-top: 28px;
}

.contact-newsletter-form-v2830 .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
}

.contact-newsletter-form-v2830 .form-field {
  min-width: 0;
}

.contact-newsletter-form-v2830 .form-field--email {
  grid-column: 1 / -1;
}

.contact-newsletter-form-v2830 label {
  display: block;
  margin: 0 0 14px;
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif !important;
  color: #0F1B2D;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-newsletter-form-v2830 input {
  display: block;
  width: 100%;
  min-height: 74px;
  box-sizing: border-box;
  border: 1px solid #C7D7EE;
  border-radius: 22px;
  background: #FFFFFF;
  color: #0F1B2D;
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 1rem;
  line-height: 1.4;
  padding: 18px 22px;
  outline: none;
}

.contact-newsletter-form-v2830 input:focus {
  border-color: #1857B8;
  box-shadow: 0 0 0 4px rgba(24, 87, 184, 0.12);
}

.contact-newsletter-form-v2830 .form-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
}

.contact-newsletter-form-v2830 button {
  min-height: 62px;
  min-width: 210px;
  padding: 16px 34px;
  border-radius: 999px;
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 800;
  line-height: 1.2;
}

.contact-newsletter-form-v2830 .form-status {
  margin-top: 18px;
  color: #304563;
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif !important;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .contact-newsletter-form-v2830 .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-newsletter-form-v2830 .form-field--email {
    grid-column: auto;
  }

  .contact-newsletter-form-v2830 input {
    min-height: 64px;
    border-radius: 18px;
  }

  .contact-newsletter-form-v2830 button {
    width: 100%;
    min-width: 0;
  }
}
