/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 28 2026 | 08:52:37 */
/* Contact Form Wrapper */
.custom-enquiry-form {
  max-width: 100%;
}

/* Input fields */
.custom-enquiry-form input[type="text"],
.custom-enquiry-form input[type="tel"],
.custom-enquiry-form input[type="email"] {
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 18px;
  border: none;
  border-radius: 2px;
  background: #ffffff;
  font-size: 16px;
  color: #333;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}

/* Placeholder color */
.custom-enquiry-form ::placeholder {
  color: #666;
}

/* Submit button */
.custom-enquiry-form input[type="submit"] {
  background-color: #ff8c1a; /* orange */
  color: #000;
  padding: 14px 28px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hover effect */
.custom-enquiry-form input[type="submit"]:hover {
  background-color: #e67610;
}
