.sci-contact {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.sci-contact__form {
  display: grid;
  gap: 1rem;
}

.sci-contact__field label {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(0, 0, 0, 0.85);
  font-size: 1rem;
  font-weight: 600;
}

.sci-contact__field input,
.sci-contact__field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  background: #fff;
  color: rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
}

.sci-contact__field textarea {
  min-height: 160px;
  resize: vertical;
}

.sci-contact__field input:focus,
.sci-contact__field textarea:focus {
  outline: none;
  border-color: #066aab;
  box-shadow: 0 0 0 3px rgba(6, 106, 171, 0.14);
}

.sci-contact__error {
  margin: 0.4rem 0 0;
  color: #d63637;
  font-size: 0.92rem;
}

.sci-contact__notice {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 3px;
}

.sci-contact__notice.is-success {
  background: #eaf6ee;
  color: #205c33;
}

.sci-contact__notice.is-error {
  background: #fbeaea;
  color: #8a1f1f;
}

.sci-contact__actions {
  margin-top: 0.25rem;
  padding-bottom: 1rem;
}

.sci-contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 140px;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  border: 0;
  border-radius: 3px;
  background: #066aab;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sci-contact__submit:hover {
  opacity: 0.92;
}

.sci-contact__submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

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

.sci-contact__turnstile {
  min-height: 65px;
}

@media (max-width: 767px) {
  .sci-contact__form {
    gap: 0.85rem;
  }

  .sci-contact__field input,
  .sci-contact__field textarea,
  .sci-contact__submit {
    width: 100%;
  }
}
