.elementor-176 .elementor-element.elementor-element-6f9e2fa{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:50px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-fe8310b *//* Container for the form */
.custom-contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Styling for labels */
.custom-contact-form label {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* Styling for input fields */
.custom-contact-form .custom-input {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Styling for textarea */
.custom-contact-form .custom-textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus and hover effects for inputs and textarea */
.custom-contact-form .custom-input:focus,
.custom-contact-form .custom-textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Styling for the submit button */
.custom-contact-form .custom-submit {
  display: inline-block;
  padding: 12px 30px;
  background-color: #6941C6;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect for the submit button */
.custom-contact-form .custom-submit:hover {
  background-color: #242A56;
  transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
  .custom-contact-form {
    padding: 15px;
  }

  .custom-contact-form .custom-input,
  .custom-contact-form .custom-textarea {
    font-size: 14px;
    padding: 10px;
  }

  .custom-contact-form .custom-submit {
    width: 100%;
    padding: 12px;
  }
}/* End custom CSS */