:root {
  /* ==========================================================================
     COLOR SYSTEM
     ========================================================================== */

  /* Neutrals */
  --color-neutral-900: #000000;
  --color-neutral-800: #404040;
  --color-neutral-700: #746E6E;
  --color-neutral-600: #959595;
  --color-neutral-500: #B7B7B7;
  --color-neutral-300: #D9D9D9;
  --color-neutral-100: #F6F6F6;
  --color-neutral-000: #FFFFFF;

  /* Primary (Blues) */
  --color-primary-900: #001C59;
  --color-primary-700: #003CC0;
  --color-primary-500: #2F6FED;
  --color-primary-300: #4C7BE3;
  --color-primary-100: #EAF3FF;
  --color-primary-50: #F6F9FF;

  /* Success (Greens) */
  --color-success-700: #027B00;
  --color-success-500: #03BB00;
  --color-success-100: #E3F2E3;

  /* Danger (Reds) */
  --color-danger-700: #A00000;
  --color-danger-500: #D70004;

  /* Warning (Yellows/Oranges) */
  --color-warning-700: #B5790C;
  --color-warning-500: #D48A12;
  --color-warning-300: #F0DCA8;
  --color-warning-100: #FFF8E9;

  /* Colors with Alpha */
  --color-primary-500-alpha-50: rgba(0, 60, 192, 0.5);
  --color-primary-500-alpha-08: rgba(47, 111, 237, 0.08);
  --color-danger-500-alpha-79: rgba(215, 0, 4, 0.79);
  --color-danger-500-alpha-08: rgba(255, 0, 4, 0.08);
  --color-success-500-alpha-08: rgba(3, 187, 0, 0.08);
  --color-neutral-000-alpha-80: rgba(255, 255, 255, 0.8);
  --color-neutral-000-alpha-05: rgba(255, 255, 255, 0.05);

  /* Typography */
  --font-family-sans: 'Montserrat', sans-serif;
  --font-family-mono: 'IBM Plex Mono', monospace;
  --font-family-display: 'Alegreya Sans SC', sans-serif;

  /* Font Sizes */
  --font-size-caption: 0.875rem;
  --font-size-body: 1rem;
  --font-size-subhead: 1.2rem;
  --font-size-title-sm: 1.4rem;
  --font-size-title-md: 1.8rem;
  --font-size-title-lg: 2.4rem;
  --font-size-hero: 4rem;

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Border Radii */
  --border-radius-xs: 1px;
  --border-radius-sm: 0.3125rem;
  --border-radius-md: 0.625rem;
  --border-radius-lg: 0.75rem;
  --border-radius-full: 1.875rem;
}
  
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 1rem;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-sans);
  background-color: var(--color-neutral-100);
  color: var(--color-neutral-900);
}

/* ==========================================================================
   COMPONENT STYLES
   ========================================================================== */

/* 1. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-family: var(--font-family-sans);
  font-weight: var(--font-weight-normal);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary-500);
  border: 1px solid var(--color-primary-900);
  color: var(--color-neutral-000);
  font-size: var(--font-size-title-sm);
  box-shadow: 0.1875rem 0.1875rem 0.5rem rgba(0, 0, 0, 0.25);
  min-height: 3.625rem;
  min-width: 12.375rem;
}

.btn-primary:hover {
  background-color: var(--color-primary-700);
  box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: var(--color-neutral-000);
  border: 1px solid var(--color-neutral-600);
  color: var(--color-primary-900);
  font-size: var(--font-size-subhead);
  min-height: 2.875rem;
  min-width: 5.8125rem;
}

.btn-outline:hover {
  background-color: var(--color-neutral-100);
  border-color: var(--color-neutral-800);
}

.btn-danger {
  background-color: var(--color-danger-500);
  border: 1px solid var(--color-danger-700);
  color: var(--color-neutral-000);
  box-shadow: 0.1875rem 0.1875rem 0.5rem rgba(0, 0, 0, 0.25);
}

.btn-danger:hover {
  background-color: var(--color-danger-700);
}

.btn-success {
  background-color: var(--color-success-500);
  border: 1px solid var(--color-success-700);
  color: var(--color-neutral-000);
  box-shadow: 0.1875rem 0.1875rem 0.5rem rgba(0, 0, 0, 0.25);
}

.btn-success:hover {
  background-color: var(--color-success-700);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

.btn-back {
  background-color: var(--color-neutral-000);
  border: 1px solid var(--color-neutral-600);
  color: var(--color-primary-900);
  font-size: var(--font-size-subhead);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  width: fit-content;
  min-height: 2.875rem;
}

.btn-back:hover {
  background-color: var(--color-neutral-100);
  border-color: var(--color-neutral-800);
}

/* 2. INPUT FIELDS */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 28.125rem;
}

.input-label {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-subhead);
  color: var(--color-neutral-900);
  font-weight: var(--font-weight-normal);
}

.input-field {
  width: 100%;
  height: 3.1875rem;
  padding: 0 1rem;
  background-color: var(--color-neutral-000);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--border-radius-md);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body);
  color: var(--color-neutral-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select.input-field {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.input-field::placeholder {
  color: var(--color-neutral-500);
  opacity: 1;
}

.input-field:focus {
  outline: none;
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 0.1875rem var(--color-primary-500-alpha-50);
}

.input-helper {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body);
  color: var(--color-neutral-600);
  font-weight: var(--font-weight-light);
}

/* Custom Searchable Select */
.custom-select-container {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-neutral-000);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--border-radius-md);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body);
  color: var(--color-neutral-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  user-select: none;
  box-sizing: border-box;
}

.custom-select-trigger:hover {
  border-color: var(--color-primary-300);
}

.custom-select-trigger:focus,
.custom-select-container.open .custom-select-trigger {
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 3px var(--color-primary-100);
  outline: none;
}

.custom-select-placeholder {
  color: var(--color-neutral-600);
}

.custom-select-placeholder.selected {
  color: var(--color-neutral-900);
  font-weight: var(--font-weight-medium);
}

.custom-select-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-neutral-600);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.custom-select-container.open .custom-select-arrow {
  transform: rotate(180deg);
  color: var(--color-primary-500);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  right: 0;
  background-color: var(--color-neutral-000);
  border: 1px solid var(--color-primary-300);
  border-radius: var(--border-radius-md);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  overflow: hidden;
}

.custom-select-container.open .custom-select-dropdown {
  display: block;
}

.custom-select-search-wrap {
  position: relative;
  padding: 0.75rem;
  border-bottom: 1px solid var(--color-neutral-300);
  background-color: var(--color-primary-50);
}

.custom-select-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--color-neutral-600);
}

.custom-select-search {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.25rem;
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--border-radius-md);
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  color: var(--color-neutral-900);
  box-sizing: border-box;
}

.custom-select-search:focus {
  outline: none;
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 2px var(--color-primary-100);
}

.custom-select-options {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  max-height: 13.5rem;
  overflow-y: auto;
}

.custom-select-options li {
  padding: 0.75rem 1.25rem;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body);
  color: var(--color-neutral-900);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.custom-select-options li:hover {
  background-color: var(--color-primary-100);
  color: var(--color-primary-900);
}

.custom-select-options li.selected {
  background-color: var(--color-primary-500);
  color: var(--color-neutral-000);
  font-weight: var(--font-weight-medium);
}

.custom-select-no-results {
  padding: 1rem;
  text-align: center;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  color: var(--color-neutral-600);
}

/* Checkbox Styles */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--color-primary-50);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--border-radius-md);
}

.checkbox-input {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  accent-color: var(--color-primary-500);
  cursor: pointer;
}

.checkbox-label {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body);
  color: var(--color-neutral-900);
  line-height: 1.5;
  cursor: pointer;
}

/* 3. BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 1rem;
  border-radius: var(--border-radius-md);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-subhead);
  font-weight: var(--font-weight-semibold);
  min-height: 2.875rem;
}

.badge-danger {
  background-color: var(--color-danger-500);
  border: 1px solid var(--color-danger-700);
  color: var(--color-neutral-000);
}

.badge-success {
  background-color: var(--color-success-500);
  border: 1px solid var(--color-success-700);
  color: var(--color-neutral-000);
}

/* 4. LAYOUT COMPONENTS (Header & Footer) */
.app-header {
  background-color: var(--color-primary-900);
  width: 100%;
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
}

.header-title-link {
  text-decoration: none;
}

.header-title {
  font-family: var(--font-family-display);
  font-size: var(--font-size-title-md);
  color: var(--color-neutral-000);
  font-weight: var(--font-weight-light);
  text-transform: lowercase;
  margin: 0;
  transition: opacity 0.2s;
}

.header-title-link:hover .header-title {
  opacity: 0.8;
}

.header-actions {
  display: flex;
  gap: 1rem;
}

.btn-header-portal {
  background-color: transparent;
  border: 2px solid var(--color-primary-100);
  color: var(--color-primary-100);
  font-size: var(--font-size-body);
  padding: 0.625rem 1.25rem;
  width: 15.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.btn-header-portal:hover,
.btn-header-portal.active {
  background-color: var(--color-primary-100);
  color: var(--color-primary-900);
  font-weight: var(--font-weight-semibold);
}

.mobile-only-driver-nav {
  display: none !important;
}

@media (max-width: 1024px) {
  .mobile-only-driver-nav {
    display: inline-flex !important;
  }
}

.header-actions-driver {
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body);
  color: var(--color-neutral-000);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}

.nav-link:hover {
  color: var(--color-primary-100);
}

.nav-link.active {
  border-bottom: 2px solid var(--color-primary-500);
}

.profile-dropdown-container {
  position: relative;
}

.btn-profile {
  background: transparent;
  border: 1.5px solid var(--color-neutral-300);
  border-radius: var(--border-radius-sm);
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--color-neutral-000);
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  transition: all 0.2s ease;
}

.btn-profile:hover {
  background: rgba(255, 255, 255, 0.1);
}

.profile-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-primary-500);
}

.profile-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background-color: var(--color-neutral-000);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 10rem;
  display: none;
  flex-direction: column;
  z-index: 100;
  overflow: hidden;
}

.profile-dropdown-menu.show {
  display: flex;
}

.dropdown-item {
  padding: 0.75rem 1rem;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body);
  color: var(--color-neutral-900);
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease;
  text-align: left;
  border-bottom: 1px solid var(--color-neutral-100);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: var(--color-neutral-100);
}

.dropdown-item.text-danger {
  color: var(--color-danger-500);
}

.mobile-title {
  display: none;
}

.mobile-title .header-title {
  text-transform: uppercase;
  font-size: var(--font-size-title-sm);
}

.hamburger-menu {
  display: none;
}

.mobile-menu-overlay {
  display: none;
}

.app-footer {
  background-color: var(--color-neutral-800);
  width: 100%;
  min-height: 16rem;
  padding: 3.5rem 4rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

.footer-links-left,
.footer-links-right {
  align-items: flex-start;
  text-align: left;
}

.footer-links a {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-subhead);
  font-weight: var(--font-weight-normal);
  color: var(--color-neutral-000);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-family-sans);
  font-size: 0.9375rem;
  color: var(--color-neutral-500);
  margin: 0;
}

/* 7. GENERAL DATA CARDS */
.data-card {
  background-color: var(--color-neutral-000);
  border: 1px solid var(--color-primary-100);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 2rem;
}

.data-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.data-card-title {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-title-sm);
  color: var(--color-neutral-900);
  font-weight: var(--font-weight-medium);
  margin: 0;
}

.data-card-icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-primary-100);
}

.data-row:last-child {
  border-bottom: none;
}

.data-label {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body);
  color: var(--color-neutral-900);
  font-weight: var(--font-weight-normal);
  flex: 1;
}

.data-value {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body);
  color: var(--color-neutral-900);
  font-weight: var(--font-weight-medium);
  text-align: right;
  flex: 1;
}

.data-value.danger {
  color: var(--color-danger-700);
}

.data-value.link {
  color: var(--color-primary-500);
  text-decoration: underline;
}

/* 2. FORMS & INPUTS */

/* Global Success States */
.success-banner {
  background-color: var(--color-neutral-000);
  border: 1px solid var(--color-success-700);
  border-radius: var(--border-radius-md);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 49.3125rem;
  margin: 2rem auto;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.success-title {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-title-md);
  color: var(--color-success-700);
  font-weight: var(--font-weight-semibold);
  text-align: center;
}

.success-highlight-box {
  background-color: var(--color-primary-50);
  border: 1px solid var(--color-success-700);
  border-radius: var(--border-radius-md);
  width: 100%;
  max-width: 33.125rem;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.success-highlight-label {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-title-sm);
  color: var(--color-neutral-900);
  font-weight: var(--font-weight-medium);
}

.success-highlight-value {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-title-sm);
  color: var(--color-neutral-900);
  font-weight: var(--font-weight-semi-bold);
}

/* Data Row Highlights */
.data-row-highlight {
  background-color: var(--color-primary-50);
  border: 1px solid var(--color-primary-100);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  margin-top: 1rem;
}

/* ==========================================================================
   8. REUSABLE COMPONENTS
   ========================================================================== */

/* Step Indicators */
.step-indicator-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 3rem auto;
  max-width: 45rem;
}

.step-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-title-sm);
  font-weight: var(--font-weight-semibold);
  text-align: center;
}

.step-item.active {
  background-color: var(--color-primary-500);
  color: var(--color-neutral-000);
}

.step-item.completed {
  background-color: var(--color-success-700);
  color: var(--color-neutral-000);
}

.step-item.inactive {
  background-color: var(--color-neutral-300);
  color: var(--color-neutral-000);
}

.step-connector {
  flex-grow: 1;
  height: 2px;
  background-color: var(--color-neutral-800);
  margin: 0 0.5rem;
}

.step-connector.completed {
  background-color: var(--color-success-700);
}

/* ==========================================================================
   GLOBAL RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
  html {
    font-size: 0.875rem;
  }

  .app-header {
    flex-direction: row;
    padding: 1.5rem 2rem;
    gap: 1rem;
    text-align: left;
    justify-content: flex-start;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
    margin-left: 0;
  }

  .hamburger-menu {
    display: block;
    position: relative;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
  }

  .hamburger-menu span {
    display: block;
    position: absolute;
    width: 100%;
    height: 0.25rem;
    background: var(--color-neutral-000);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    left: 0;
  }

  .hamburger-menu span:nth-child(1) {
    top: 0;
  }

  .hamburger-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger-menu span:nth-child(3) {
    bottom: 0;
  }

  .hamburger-menu.open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .hamburger-menu.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

  .header-actions {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-primary-900);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 6rem;
    transition: right 0.3s ease-in-out;
    z-index: 99;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
  }

  .header-actions.open {
    right: 0;
    left: auto;
  }

  .mobile-menu-overlay.open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
  }

  .btn-header-portal {
    width: 90%;
    margin: 0 auto 1rem auto;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 0.8125rem;
  }

  .app-footer {
    min-height: auto;
    padding: 2rem 1.25rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .footer-links-left,
  .footer-links-right {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .footer-links {
    gap: 0.875rem;
  }

  .footer-links a {
    font-size: var(--font-size-caption);
  }

  /* Prevent iOS Mobile Safari auto-zoom on input focus */
  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="search"],
  select,
  textarea,
  .form-input,
  .form-select,
  .custom-select-search {
    font-size: 16px !important;
  }
}