body {
  min-height: 100vh;
  overflow-x: hidden;
}

.sidebar {
  background: #f0f4fb;
  height: 100vh;
  padding: 2rem 0 2rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #dee2e6;
  margin-right: 5%;
}

.logo {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #0b2a70;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.logo span {
  width: 18px;
  height: 22px;
  background: linear-gradient(45deg, #d34d33 20%, #003b9a 80%);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  transform: rotate(15deg);
  display: inline-block;
}

.stepper {
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #1a2a58;
}

.stepper .step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  margin-bottom: 2rem;
  cursor: default;
}

.stepper .step .circle {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
}

.stepper .step.active .circle {
  background-color: #0046c3;
}

.stepper .step.inactive .circle {
  border: 2px solid #b0b6c4;
  background: #f0f4fb;
  color: #b0b6c4;
}

.stepper .step.active .label {
  font-weight: 700;
  color: #0046c3;
}

.stepper .step.inactive .label {
  color: #a7adc7;
}

.stepper .step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 22px;
  width: 2px;
  height: 28px;
  background: #dee2e6;
  z-index: 0;
}

.sidebar-footer {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.sidebar-footer .features-text {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 14px;
}

.sidebar-footer .logos {
  display: flex;
  justify-content: center;
  gap: 1.7rem;
}

.sidebar-footer .logos img {
  filter: grayscale(1) brightness(1.2);
  max-height: 28px;
  max-width: 110px;
  object-fit: contain;
}

.sidebar-footer .logos img:hover {
  filter: none;
}

main.container {
  padding: 3rem 2rem 6rem 2rem;
  min-height: 100vh;
  background-color: #fff;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #0940a7;
  margin-bottom: 1.75rem;
  user-select: none;
}

.topbar svg {
  height: 18px;
  width: 18px;
  fill: #0940a7;
}

.top-bar-logo {
	display:none;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.language-switch img {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease;
}

.language-switch:hover img {
  border-color: #0940a7;
}

.form-section {
  margin-bottom: 1.75rem;
  background: #f7faff;
  border-radius: 0.6rem;
  padding: 1.5rem 2rem 1.7rem 2rem;
  color: #093675;
  box-shadow: 0 0 3px rgb(9 54 140 / 0.05);
}

.form-section h5 {
  font-weight: 700;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.form-section label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #093675;
}

.form-section .form-check {
  position: relative;
  padding: 0;
}

.form-section .btn-check {
  clip: auto;
  top: 18px;
  left: 5px;
}

/* Input icons left */
.input-icon-left {
  position: relative;
}

.input-icon-left .form-control {
  padding-left: 2.5rem !important;
}

.input-icon-left svg {
  position: absolute;
  top: 70%;
  left: 1rem;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: #8596b0;
  pointer-events: none;
}

/* Radio Button style cards */
.btn-check:checked + label {
  border-color: #2571c7;
  background-color: #e7f0ff;
  color: #0940a7;
  font-weight: 600;
  box-shadow: 0 0 6px rgb(37 113 199 / 0.5);
}

.btn-check + label {
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 0.9rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  height: 3.1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #47526e;
  user-select: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-check + label svg {
  margin-right: 0.7rem;
  fill: #8596b0;
  width: 18px;
  height: 18px;
}

.add-airport-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2569c6;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  margin-top: 0.65rem;
}

.add-airport-link:hover {
  text-decoration: underline;
  color: #0d47a1;
}

.info-box {
  background: #ebf2fa;
  border-radius: 0.5rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: #2a3e68;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.info-box svg {
  flex-shrink: 0;
  fill: #4266ce;
  width: 18px;
  height: 18px;
}

button.continue-btn {
  width: 140px;
  height: 44px;
  background: #0046c3;
  border: none;
  border-radius: 8px;
  color: #f7faff;
  font-weight: 600;
  transition: background-color 0.25s ease;
}

button.continue-btn.enabled {
  cursor: pointer;
  background: #0046c3;
  color: white;
}



@media only screen and (max-width: 1280px) {
	
	.top-bar-logo {
		display: flex;
	}

	.sidebar {
		display: none;
	}
	
	.main-content {
		width: 95%;
		margin-left: auto;
		margin-right: auto;
	}	
}