.elementor-8043 .elementor-element.elementor-element-6fa93ce{--display:flex;}/* Start custom CSS for html, class: .elementor-element-6e20b9b *//* === CF7 Form Container === */
.wpcf7 form {
  max-width: 450px; /* Updated max-width */
  margin: 30px auto; /* Adjusted for margin consistency */
  background: #f9f9f9; /* Reference background color */
  padding: 30px; /* Adjusted padding for consistency */
  border-radius: 12px; /* Reference border-radius */
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); /* Reference box-shadow */
  font-family: Arial, sans-serif; /* Reference font family */
}

/* === Form Labels === */
.wpcf7 form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  font-size: 1rem; /* Ensure consistency with text size */
  color: #333; /* Reference text color */
}

/* === Inputs & Selects === */
.wpcf7 form input,
.wpcf7 form select,
.wpcf7 form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px; /* Matching border-radius from reference */
  box-sizing: border-box;
  font-size: 1rem;
}

/* === Bank Statement Upload (increased margin below) === */
.wpcf7 form input[type="file"] {
  margin-bottom: 30px !important; /* Increased space below the upload input */
}

/* === Button Styles === */
.wpcf7 form input[type="submit"]:not([class*="wpcf7-"]),
.wpcf7 form .wpcf7-submit {
  background: #c5973f !important; /* Golden color */
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
  transition: background 0.2s ease;
}

.wpcf7 form input[type="submit"]:not([class*="wpcf7-"]):hover,
.wpcf7 form .wpcf7-submit:hover {
  background: #a67d2f !important; /* Darker gold on hover */
}

/* === Error Message === */
.wpcf7 .error-message {
  color: red;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}

/* === Optional Custom Token Input === */
.wpcf7 form input[name="token_id"] {
  display: none; /* Hidden token field */
}

/* === Responsive Design === */
@media(max-width: 767px){
  .wpcf7 form {
    padding: 20px; /* Less padding on mobile */
  }

  .wpcf7 form input[type="submit"]:not([class*="wpcf7-"]),
  .wpcf7 form .wpcf7-submit {
    padding: 10px 20px; /* Adjust button size on mobile */
  }
}

.wpcf7-form-control {
    background-color: #fff !important;
}/* End custom CSS */