/* Style the Form Container */
.clio-grow-form {
  background-color: #f9f9f9; /* Light gray background */
  padding: 20px;            /* Add space inside the form */
  border-radius: 5px;       /* Rounded corners */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}
/* Style the Input and Textarea Fields */
.clio-grow-form input[type="text"],
.clio-grow-form input[type="email"],
.clio-grow-form textarea {
  width: 100%;              /* Full-width fields */
  padding: 10px;            /* Space inside the fields */
  margin-bottom: 10px;      /* Space between fields */
  border: 1px solid #ccc;   /* Light gray border */
  border-radius: 3px;       /* Slightly rounded edges */
  font-size: 16px;          /* Adjust font size */
}