.enquiry-form {
  background: #fff;
  padding: 20px;
  max-width: 600px;
  border-radius: 5px;
}

.enquiry-form .form-group {
  margin-bottom: 16px;
}

.enquiry-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: normal;
}

.enquiry-form input[type=\"text\"],
.enquiry-form input[type=\"email\"],
.enquiry-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.enquiry-form input {
  display: flex;
  height: 2.5rem; /* h-10 = 40px */
  width: 100%;
  border-radius: 0.375rem; /* rounded-md = 6px */
  border: 1px solid #d1d5db; /* border-input */
  background-color: #ffffff;
  padding: 0.5rem 0.75rem; /* py-2 px-3 = 8px top/bottom, 12px left/right */
  font-size: 1rem; /* base = 16px */
}

.enquiry-form input::placeholder {
  color: #9ca3af; /* placeholder:text-muted-foreground */
  font-size: 14px;
}

.enquiry-form input:focus-visible {
  outline: none;
}

.enquiry-form button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
}

.enquiry-form button:hover {
  background-color: #000;
}
