/* form container */
#cfp-contact-form {
  max-width: 400px;
  margin: 0 auto;
}

/* form labels */
#cfp-contact-form label {
  display: block;
  margin-bottom: 5px;
}

/* form input fields and textarea */
#cfp-contact-form input[type="text"],
#cfp-contact-form input[type="email"],
#cfp-contact-form input[type="tel"],
#cfp-contact-form textarea {
 
width: 100%;
  padding: 10px;
background-color:rgba(0, 0, 0, 0);
  border: 1px solid #ccc;
  border-radius: 15px;
  margin-bottom: 10px;
color: #ffffff;
font: Inherit;
}

/* form select field */
#cfp-contact-form select {
  width: 100%;
  padding: 10px;
background-color:rgba(0, 0, 0, 0);
  border: 1px solid #ccc;
color: #ffffff;
font: Inherit;
  border-radius: 15px;
margin-bottom: 10px;
}

#cfp-contact-form select option {
  /* Apply desired styling to the dropdown options */
  font-size: 14px; /* Example: set font size for options */
  color: #666; /* Example: set font color for options */
  padding: 25px 12px; /* Example: set padding for options */
  /* Add more CSS properties to customize the options appearance */
}
#cfp-contact-form select option:hover {
  /* Apply desired styling to the hovered options */
  background-color: #f0f0f0; /* Example: set background color for hovered options */
  /* Add more CSS properties to customize the appearance of hovered options */
}



/* form submit button */
#cfp-contact-form input[type="submit"] {
  width: 100%;
  padding: 20px;
  background-color: #0DFFB4;
  color: #fff;
font-family: "Poppins", sans-serif; 
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

/* form submit button hover effect */
#cfp-contact-form input[type="submit"]:hover {
  background-color: #0DD18F;
}