/* Contact section module */
.contact-section {
  background: #f8fafc;
}

.contact-form {
  position: relative;
}

.contact-form:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius) var(--radius) 0 0;
}

.contact-item,
.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: var(--radius);
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: .72;
}
