.elementor-7965 .elementor-element.elementor-element-aa34793{--display:flex;}/* Start custom CSS for html, class: .elementor-element-70b776a */form#fpoForm {
  max-width: 750px; /* Matching the max-width of the reference form */
  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#fpoForm h2 {
  color: #222; /* Reference header text color */
  margin-bottom: 20px; /* Consistent with the reference */
  font-size: 1.3rem; /* Matching font size */
}

form#fpoForm label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  font-size: 1rem; /* Ensure consistency with text size */
}

form#fpoForm input,
form#fpoForm select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px; /* Matching border-radius from reference */
  box-sizing: border-box;
}

.form-step {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee; /* Matching border-bottom */
}

.form-step:last-child {
  border-bottom: none;
}

.form-step h2 {
  margin-bottom: 20px;
  color: #222;
  font-size: 1.3rem; /* Matching font size */
}

.form-step h3 {
  margin: 20px 0 10px;
  color: #333;
  font-size: 1.1rem; /* Consistent with the reference */
}

/* --- Multi-Step Form --- */
.form-step { display: none; }
.form-step.active { display: block; }

/* Progress bar */
#progressBar {
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

#progressFill {
  height: 100%;
  width: 0;
  background: #c5973f; /* Golden progress */
  transition: width 0.3s ease;
}

/* Navigation buttons */
.form-navigation {
  margin-top: 20px;
  text-align: center;
}

/* Next & Submit buttons = Golden */
.next-btn,
form#fpoForm button[type="submit"] {
  background: #c5973f; /* Matching golden color */
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  margin: 5px;
  transition: background 0.2s ease;
}

.next-btn:hover,
form#fpoForm button[type="submit"]:hover {
  background: #a67d2f; /* Darker gold on hover */
}

/* Back buttons = Black */
.back-btn {
  background: #000000;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  margin: 5px;
  transition: background 0.2s ease;
}

.back-btn:hover {
  background: #333333; /* Slightly lighter black on hover */
}

/* Checkbox alignment */
.checkbox-group label {
  display: flex !important;
  align-items: center !important;
  font-weight: normal !important;
  margin-top: 10px !important;
  gap: 10px !important;
  line-height: 1.4 !important;
}

.checkbox-group input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.error-message {
  color: red;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}/* End custom CSS */