/* ===== GLOBAL Signup.Css ===== */
body {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
  background: #f3f4f6;
  color: #111;

  /* Optional hero background image */
  background-image: url("img/flexago-hero.png"); /* <-- Replace with your illustration */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== TOP BANNER ===== */
.signup-header {
  width: 100%;
  height: 70px;
  background: #1e40af;
  border-bottom: 1px solid #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  box-sizing: border-box;
}

.signup-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}

.signup-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.signup-nav {
  display: flex;
  gap: 20px;
}

.signup-nav-item {
  text-decoration: none;
  color: #dbeafe;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.signup-nav-item:hover {
  color: #ffffff;
}

/* ===== LANGUAGE SELECTOR ===== */
.lang-select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #93c5fd;
  background: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
}

/* ===== SIGNUP CONTAINER ===== */
.signup-container {
  max-width: 420px;
  margin: 60px auto;
  background: rgba(255,255,255,0.92); /* Slight transparency for hero image */
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(6px);
}

.signup-container h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}

/* ===== FORM ===== */
.signup-form input,
.signup-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  box-sizing: border-box;
}

.signup-form input:focus,
.signup-form select:focus {
  border-color: #2563eb;
  outline: none;
}

.role-label {
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: block;
  color: #374151;
}

/* ===== CTA BLOCK ===== */
.signup-cta-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.45;
  margin-top: 10px;
}

.signup-cta-box a {
  color: #2563eb;
  text-decoration: none;
}

.signup-cta-box a:hover {
  text-decoration: underline;
}

/* ===== BUTTON ===== */
.signup-btn {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s ease;
}

.signup-btn:hover {
  background: #1e4fc7;
}

/* ===== LOGIN TEXT ===== */
.signup-login-text {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
}

.signup-login-text a {
  color: #2563eb;
  text-decoration: none;
}

.signup-login-text a:hover {
  text-decoration: underline;
}

/* ===== WATERMARK (Vector or Cartoon) ===== */
.flexago-watermark {
  position: fixed;
  bottom: 10%;
  right: 5%;
  width: 380px;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}

.flexago-watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.18;
}

/* ===== FOOTER ===== */
.signup-footer {
  background: #1e40af;
  color: #ffffff;
  padding: 40px;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  width: 200px;
  margin-bottom: 20px;
}

.footer-column h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-column a {
  display: block;
  color: #dbeafe;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: #ffffff;
}
/* ============================================================
   TOP NAV — Unified FlexaGo Banner
   ============================================================ */

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f172a; /* same dark blue as Traveler/Sender */
  padding: 14px 20px;
  color: #fff;
}

.top-nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.flexago-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.top-nav-title-main {
  font-size: 20px;
  font-weight: 700;
}

.top-nav-title-sub {
  font-size: 13px;
  opacity: 0.8;
}

.top-nav-links {
  display: flex;
  gap: 16px;
}

.top-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}

.top-nav-link:hover {
  opacity: 1;
}

.lang-select {
  background: #1e293b;
  color: #fff;
  border: 1px solid #334155;
  padding: 6px 10px;
  border-radius: 6px;
}
