.contact-form {
  max-width: 480px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-color, #ccc);
  font-size: 1rem;
  font-family: inherit;
  background: var(--input-bg, #fff);
  color: inherit;
}

.contact-form button {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  background-color: #25D366;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-status {
  min-height: 1.2em;
  font-size: 0.95rem;
}

.contact-status.success {
  color: #2e7d32;
}

.contact-status.error {
  color: #c62828;
}
