
/* Brand spec + centered button text, recaptcha spacing, honeypot hidden */
:root {
  --ntif-border: #ba8d77;
  --ntif-text: #133f32;
  --ntif-bg: #eae8e4;
}

.ntif-form, .ntif-success {
  font-family: 'Montserrat Alternates', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ntif-text);
}

.ntif-form {
  max-width: 680px;
  margin: 2rem auto;
  padding: 1.25rem 1.5rem;
  background: var(--ntif-bg);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 2px solid var(--ntif-border);
}

.ntif-logo {
  display: block;
  margin: 0 auto 1rem auto;
  max-width: 320px;
  height: auto;
}

.ntif-title {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  color: var(--ntif-text);
}

.ntif-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9rem;
}
.ntif-row label {
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ntif-text);
}
.ntif-row input,
.ntif-row textarea {
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  outline: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  color: var(--ntif-text);
  background: #ffffff;
}
.ntif-row input:focus,
.ntif-row textarea:focus {
  border-color: var(--ntif-border);
  box-shadow: 0 0 0 4px rgba(186, 141, 119, 0.2);
}
.ntif-recaptcha { margin-top: 0.4rem; }

.ntif-actions {
  margin-top: 1.1rem;
}
.ntif-btn {
  appearance: none;
  border: none;
  border-radius: 4px; /* rectangular */
  padding: 0.9rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--ntif-text); /* #133f32 */
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(19, 63, 50, 0.25);
  transition: transform 0.07s ease, box-shadow 0.2s ease, filter 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ntif-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.ntif-btn:active { transform: translateY(0); box-shadow:none; }
.ntif-errors {
  background: #fff5f5;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.ntif-success {
  max-width: 680px;
  margin: 2rem auto;
  padding: 1.25rem 1.5rem;
  background: var(--ntif-bg);
  border: 2px solid var(--ntif-border);
  border-radius: 16px;
}
.ntif-privacy-note {
  font-size: 0.9rem;
  color: var(--ntif-text);
  margin-top: 0.8rem;
  opacity: 0.8;
}

/* Honeypot: keep in DOM for bots, fully hidden for users and a11y */
.ntif-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
