* 

.contact-form {
  width: 100%;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  background: #ffffff;
  color: #111827;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

input:focus,
textarea:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

input.invalid,
textarea.invalid {
  border-color: #dc2626;
}

.error-message {
  display: block;
  min-height: 16px;
  margin-top: 5px;
  color: #dc2626;
  font-size: 12px;
}

button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  background: #c7a92f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

button:hover {
  opacity: 0.9;
}

button:active {
  transform: translateY(1px);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.form-status {
  min-height: 20px;
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
}

.form-status.success {
  color: #15803d;
}

.form-status.error {
  color: #dc2626;
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 600px) {
  body {
    padding: 16px;
  }

  .contact-form {
    padding: 22px;
  }
}
