/* Contact page — shares layout with static pages */
.sg-contact-page__intro {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
}

.sg-contact-form__note {
  margin: 0 0 20px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #94a3b8;
}

.sg-contact-form__label {
  display: block;
  margin: 16px 0 6px;
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}
.sg-contact-form__label:first-of-type {
  margin-top: 0;
}

.sg-contact-form__input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  background: #fff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
  outline: none;
  transition: border-color 150ms;
}
.sg-contact-form__input:focus {
  border-color: #3b82f6;
}
.sg-contact-form__input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.sg-contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.sg-contact-form__submit {
  margin-top: 24px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 12px 20px;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #2563eb;
  cursor: pointer;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.08);
  transition: background 150ms;
}
.sg-contact-form__submit:hover {
  background: #1d4ed8;
}
@media (min-width: 480px) {
  .sg-contact-form__submit {
    width: auto;
    min-width: 180px;
  }
}
