/* .contact-form {
  max-width: 640px;
  margin-top: 24px;
} */

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 10px 18px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #555;
}

.contact-notes {
  margin-top: 48px;
  padding: 16px;
  background: #f7f7f7;
  border-left: 4px solid #999;
  font-size: 14px;
}