/* Container */
.signup-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

/* Form */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Labels */
.role-label {
  font-weight: 600;
  text-align: left;
}

/* Inputs */
.input-field {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Buttons */
.primary-btn {
  background-color: #007bff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.primary-btn:hover {
  background-color: #0056b3;
}

/* Status text */
.status-text {
  font-size: 14px;
  color: #555;
  margin-top: -10px;
}
/* ============================================================
   TOP NAV — Unified FlexaGo Banner
   ============================================================ */

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f172a;
  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: 40px;
  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;
}
