/* ==========================================================
   DRIVERS REGISTRATION PAGE — FULL REFINEMENT
   Mirrors the original AirportsTravelLtd styling exactly
   ========================================================== */


/* ---------------- Global Typography ---------------- */
body, p, label, input, select, button {
  font-family: "Montserrat", sans-serif;
  color: #101010;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 600;
  color: #000;
}



/* ==========================================================
   ✅ BANNER — Same as main site
   ========================================================== */
/*.banner-wrapper {
  padding: 200px 0;
  text-align: center;
  background-image: url('../img/all-pages-banner.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.banner-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.5;
}

.banner-wrapper .container {
  position: relative;
  z-index: 2;
}

.banner-wrapper h1 {
  font-size: 48px !important;
  font-family: 'Fira Sans Condensed';
  font-weight: 500 !important;
  color: #fff;
  text-transform: uppercase;
}
*/


/* ==========================================================
   ✅ Main Form Container
   ========================================================== */
.driver-main-page {
  padding: 60px 0;
}

.driver-main-page .shadow-sm {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.06);
}



/* ==========================================================
   ✅ FORM SECTION HEADINGS (Green Bars)
   EXACT MATCH TO ORIGINAL
   ========================================================== */

.col-12.form-heading {
    background: #325c52;
    padding: 14px 26px;
    color: #fff !important;
    font-size: 24px;
    font-family: 'Fira Sans Condensed', sans-serif;
    line-height: 30px;
    margin: 30px 0;
    border-radius: 40px;
}

.col-12.form-heading:first-child {
    margin-top: 0;
    margin-bottom: 30px;
}

.col-12.form-heading span {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}



/* ==========================================================
   ✅ FORM FIELDS —
   ========================================================== */
.field {
  margin-bottom: 25px;
  position: relative;
}

.field label {
  font-weight: 500 !important;
  color: rgba(0,0,0,0.6);
  margin-bottom: 5px;
  display: block;
  font-size: 15px;
}

.field .form-control {
  border: 1px solid #325c52 !important;
  background: rgba(0,0,0,0.02);
  border-radius: 20px !important;
  padding: 12px 15px;
  font-size: 15px;
  transition: .2s;
}

.field .form-control:focus {
  border-color: #325c52;
  box-shadow: 0 0 0 2px rgba(50,92,82,0.18);
}



/* ==========================================================
   ✅ Select Dropdowns — Same arrow style
   ========================================================== */
select.form-control {
  appearance: none;
  background: #fff url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="gray">\
<polygon points="0,0 12,0 6,8"/>\
</svg>') no-repeat right 15px center;
  background-size: 12px;
}



/* ==========================================================
   ✅ Upload Document Boxes (Paperclip boxes)
   EXACT MATCH TO ORIGINAL
   ========================================================== */
#driver_docs .field label span {
  background: rgba(0,0,0,0.02);
  border-radius: 20px !important;
  border: 1px solid #325c52 !important;
  display: block;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
}

#driver_docs .field label span:hover {
  border-color: #fff;
  background: #f2f7f6;
}

#driver_docs i.fa-paperclip {
  font-size: 22px;
  margin-bottom: 5px;
}

#driver_docs .btn-light {
  background: #fff !important;
  margin-top: 10px;
}

#driver_docs .btn-light:hover {
  background: #dfe6e4;
}



/* ==========================================================
   ✅ Submit Button — #e9ecef Exact match
   ========================================================== */
.btn.btn-secondary.btn-lg.btn-block {
  background: #325c52 !important;
  border-radius: 25px !important;
  padding: 14px !important;
  font-size: 18px;
  font-weight: 600;
  border: none;
}

.btn.btn-secondary.btn-lg.btn-block:hover {
  background: #1f3f37 !important;
}



/* ==========================================================
   ✅ RESPONSIVE
   ========================================================== */

@media (max-width: 991px) {
  .banner-wrapper {
    padding: 120px 0;
  }
  .banner-wrapper h1 {
    font-size: 32px;
  }
  .driver-main-page {
    padding: 30px 0;
  }
  .col-12.form-heading {
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 30px;
  }
}
