/* ==========================================
   COMMON LAYOUT & CORE THEME CARDS
   ========================================== */
.flightBookingRoot_98271 {
  background: linear-gradient(135deg, #f0f4fc 0%, #e6edf7 100%);
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bookingCard_98271 {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(0px);
  border-radius: 42px;
  max-width: 600px;
  box-shadow:
    0 30px 55px -20px rgba(0, 0, 0, 0.25),
    0 8px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 100%;
}

.cardInnerPadding_98271 {
  padding: 2.5rem 2.5rem;
}

/* Headings Typography */
.headline_98271 {
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #1a2e4d, #1e3a5f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.25rem;
}

.subhead_98271 {
  color: #5b6f8c;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid #ffb347;
  padding-left: 12px;
  margin-bottom: 1.8rem;
}

/* Primary Form Action Button */
.bookBtn_98271 {
  background: linear-gradient(95deg, #ff9f4a, #ff7e2e);
  border: none;
  padding: 1rem 0;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 44px;
  color: white;
  letter-spacing: 0.5px;
  transition: 0.2s;
  width: 100%;
  box-shadow: 0 12px 18px -8px rgba(255, 126, 46, 0.35);
}

.bookBtn_98271:hover {
  background: linear-gradient(95deg, #ff8f30, #ff6c1a);
  transform: translateY(-2px);
  box-shadow: 0 20px 24px -12px rgba(255, 100, 0, 0.4);
}

/* ==========================================
   REGISTRATION FORM COMPONENT ELEMENTS
   ========================================== */
.infoTile_98271 {
  background: #fafcff;
  border-radius: 28px;
  padding: 0.6rem 1rem;
  border: 1px solid #dfe1e3;
  transition: 0.2s;
}

.infoTile_98271:hover {
  border-color: #ffd7a5;
  background: #fffefb;
}

.infoText_98271 {
  font-weight: 600;
  color: #1f2e45;
  font-size: 1rem;
  margin-bottom: 8px;
}

.infoIcon_98271 {
  font-size: 1.25rem;
  color: #ff9f4a;
  margin-right: 8px;
  width: 28px;
  text-align: center;
}

.infoSmall_98271 {
  font-size: 0.7rem;
  color: #7388a5;
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* ==========================================
   OTP VERIFICATION SPECIFIC ELEMENTS
   ========================================== */
.otp-input-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 2rem 0;
}

.otp-box_98271 {
  width: 52px;
  height: 56px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2e45;
  background: #fafcff;
  border-radius: 14px;
  border: 2px solid #dfe1e3;
  transition: all 0.2s ease;
}

.otp-box_98271:focus {
  border-color: #ff9f4a;
  background: #fffefb;
  box-shadow: 0 0 0 4px rgba(255, 159, 74, 0.15);
  outline: none;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   ========================================== */
@media (max-width: 768px) {
  .cardInnerPadding_98271 {
    padding: 1.8rem 1.5rem;
  }

  .bookingCard_98271 {
    border-radius: 32px;
  }

  .otp-box_98271 {
    width: 42px;
    height: 48px;
    font-size: 1.3rem;
    border-radius: 10px;
  }

  .otp-input-container {
    gap: 6px;
  }
}
