/* Adapt contact form styles */
.adapt-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  padding: 28px 28px 24px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.adapt-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: inherit;
}
.adapt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .adapt-form-row { grid-template-columns: 1fr; }
}
.adapt-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.adapt-form-field label {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}
.adapt-form-field input,
.adapt-form-field select,
.adapt-form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #111827;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.adapt-form-field input:focus,
.adapt-form-field select:focus,
.adapt-form-field textarea:focus {
  outline: none;
  border-color: #1e5aa8;
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.15);
}
.adapt-form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.adapt-form-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.adapt-form-submit {
  display: inline-block;
  padding: 14px 28px;
  background: #1e5aa8;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
}
.adapt-form-submit:hover {
  background: #164578;
}
.adapt-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-message {
  max-width: 640px;
  margin: 12px auto 0;
}
