/* Form container */
.clio-grow-form {
  background: transparent !important;
  font-family: inherit !important;
  max-width: 100% !important;
  padding: 0 !important;
}

/* All input fields and textarea */
.clio-grow-form input[type="text"],
.clio-grow-form input[type="email"],
.clio-grow-form input[type="tel"],
.clio-grow-form textarea,
.clio-grow-form select {
  background-color: #1a1f2e !important;
  border: 1px solid #3a3f4e !important;
  border-radius: 4px !important;
  color: #ffffff !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s ease !important;
}

/* Input focus state */
.clio-grow-form input[type="text"]:focus,
.clio-grow-form input[type="email"]:focus,
.clio-grow-form input[type="tel"]:focus,
.clio-grow-form textarea:focus,
.clio-grow-form select:focus {
  border-color: #f0a500 !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(240, 165, 0, 0.2) !important;
}

/* Placeholder text */
.clio-grow-form input::placeholder,
.clio-grow-form textarea::placeholder {
  color: #8a8f9e !important;
  opacity: 1 !important;
}

/* Labels */
.clio-grow-form label {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  margin-bottom: 6px !important;
}

/* Textarea */
.clio-grow-form textarea {
  min-height: 120px !important;
  resize: vertical !important;
}

/* Submit button */
.clio-grow-form input[type="submit"],
.clio-grow-form button[type="submit"],
.clio-grow-form .submit-btn {
  background-color: #f0a500 !important;
  color: #0d1117 !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 14px 32px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  width: 100% !important;
}

/* Submit button hover */
.clio-grow-form input[type="submit"]:hover,
.clio-grow-form button[type="submit"]:hover,
.clio-grow-form .submit-btn:hover {
  background-color: #d4920a !important;
}

/* Spacing between fields */
.clio-grow-form .form-group,
.clio-grow-form .field-wrapper,
.clio-grow-form .form-field {
  margin-bottom: 16px !important;
}