#custom-contact-form .submit_contact_form {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--wp--preset--color--custom-ufo-green);
  color: white;
  padding: 4px 4px 4px 15px;
  border: none;
  border-radius: 200px;
  cursor: pointer;
  transition: all 0.4s ease;
}

#custom-contact-form .submit_contact_form:hover {
  background-color: var(--wp--preset--color--custom-brilliant-azure);
  transition: all 0.4s ease;
}

#custom-contact-form .mandatory {
  color: red;
  margin-left: 3px;
}

#custom-contact-form .form-columns {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
#custom-contact-form .form-columns > div {
  flex: 1;
  min-width: 250px;
}
@media (max-width: 767px) {
  #custom-contact-form .form-columns > div {
    flex: 100%;
  }
}

#custom-contact-form div div {
  margin-bottom: 25px;
}

#custom-contact-form br {
  display: none;
}
#custom-contact-form label {
  display: block;
  margin-bottom: 10px;
  color: #17202c;
  font-weight: bold;
}
#custom-contact-form input,
#custom-contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
#custom-contact-form textarea {
  height: 100px;
}
.submit_contact_form {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--wp--preset--color--custom-ufo-green);
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 200px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 1rem;
}
.submit_contact_form:hover {
  background-color: var(--wp--preset--color--custom-brilliant-azure);
  transition: all 0.4s ease;
}

/* Form response */
#form-response {
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
}

#form-response.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#form-response.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
