/* ===== CONTACT FORM ===== */
.field {
  max-width: 600px;
  margin: 40px auto;
  display: grid;
  gap: 10px;
  padding: 18px;
}

label {
  font-weight: 600;
  color: #1D00AE;
}

.input,
.textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7d9e6;
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input:focus,
.textarea:focus {
  border-color: #1D00AE;
  box-shadow: 0 0 0 4px rgba(29, 0, 174, 0.12);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.hint {
  margin: 0;
  font-size: 13px;
  color: #6b6f85;
}

.notice {
  margin: 0;
  font-size: 14px;
  color: #1D00AE;
}
