/* =========================================
   Omega Accounting — Universal Form Styles
   ========================================= */

/* Form Section Container */
.form-sec {
  background: #f5f6f8;
  padding: 24px 20px;
}

/* Section Labels & Headings (reusable above forms) */
.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #e04403;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sec-heading {
  font-size: 20px;
  font-weight: 700;
  color: #203864;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Form Fields */
.form-field {
  margin-bottom: 12px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #203864;
  margin-bottom: 5px;
}

.form-field input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c8d0dc;
  border-radius: 5px;
  font-size: 14px;
  color: #203864;
  background: #fff;
  box-sizing: border-box;
}

.form-field input:focus {
  border-color: #e04403;
  outline: none;
}

.form-field .optional {
  font-weight: 400;
  color: #888;
  font-size: 11px;
}

/* Submit Button */
.omega-submit.btn-orange-solid {
  display: block;
  width: 100%;
  background: #d14a27;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  margin-top: 4px;
  transition: background-color 0.2s;
}

.omega-submit.btn-orange-solid:hover {
  background: #b13d1f;
}

/* Privacy Disclaimer */
.form-privacy {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}
