.intra-form {
  display: grid;
  gap: 0.9rem;
  color: #0b1f35;
}

.intra-form * {
  box-sizing: border-box;
}

.intra-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.intra-field {
  display: grid;
  gap: 0.35rem;
}

.intra-field span,
.intra-consent span {
  color: #34465a;
  font-size: 0.86rem;
  font-weight: 780;
}

.intra-field input,
.intra-field textarea,
.intra-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  color: #0b1f35;
  background: #ffffff;
  border: 1px solid #d8e1ea;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.intra-field textarea {
  resize: vertical;
}

.intra-field input:focus,
.intra-field textarea:focus,
.intra-field select:focus {
  border-color: #0e7b75;
  box-shadow: 0 0 0 4px rgba(14, 123, 117, 0.12);
}

.intra-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.6rem;
  align-items: start;
}

.intra-consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: #0e7b75;
}

.intra-submit {
  min-height: 52px;
  padding: 0.9rem 1.15rem;
  color: #ffffff;
  background: #0e2d4d;
  border: 1px solid #0e2d4d;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.16s ease, background 0.16s ease;
}

.intra-submit:hover {
  background: #0e7b75;
  transform: translateY(-1px);
}

.intra-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.intra-alert {
  padding: 0.8rem 0.95rem;
  border-radius: 8px;
  font-weight: 800;
}

.intra-alert.success {
  color: #0a4b34;
  background: #ddf5e8;
  border: 1px solid #a7dfbf;
}

.intra-alert.error {
  color: #7b1e18;
  background: #ffe4e0;
  border: 1px solid #f3b2aa;
}

.intra-form.is-compact {
  gap: 0.75rem;
}

.intra-form.is-compact .intra-field input,
.intra-form.is-compact .intra-field textarea {
  min-height: 44px;
}

@media (max-width: 680px) {
  .intra-two {
    grid-template-columns: 1fr;
  }
}
