/* ==== Reset & Base Styles ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('signinbg.png') center/cover no-repeat fixed;
  min-height: 100vh;
  color: #fff;
}
.white-box {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  line-height: 1.6;
}
/* ==== Navigation Bar ==== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  padding: 1rem 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ff94;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00ff94;
}

.search-bar {
  display: flex;
  align-items: center;
}

.search-bar input {
  padding: 6px 12px;
  border: none;
  border-radius: 20px 0 0 20px;
  outline: none;
  background: #fff;
  color: #333;
}

.search-bar button {
  padding: 6px 12px;
  border: none;
  background: #213404;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  color: #000;
}

/* ==== Marquee Banner ==== */
.marquee-container {
  background: #f5f7f6;
  color: black;
  padding: 8px 0;
  font-weight: bold;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* ==== Signup Form ==== */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  min-height: calc(100vh - 160px); /* Adjust for nav + footer */
}

.signup-card {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 3rem 2rem;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 255, 148, 0.2);
}

.signup-card h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #00ff94;
  font-size: 28px;
}

.signup-card input {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 15px;
}

.signup-card button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #00ff94;
  color: black;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.signup-card button:hover {
  background: #00d67c;
}

.signup-card p {
  text-align: center;
  margin-top: 1rem;
  color: #ccc;
}

.signup-card a {
  color: #00ff94;
  text-decoration: none;
  font-weight: 500;
}

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

/* ==== Trust Signals ==== */
.trust {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

.trust p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

/* ==== Password Strength Indicator ==== */
#strengthMessage {
  font-size: 14px;
  margin-bottom: 1rem;
  text-align: left;
}

#strengthMessage.weak {
  color: #ff4d4d;
}

#strengthMessage.medium {
  color: #ffa500;
}

#strengthMessage.strong {
  color: #00ff94;
}

/* ==== Footer ==== */
footer {
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #bbb;
  margin-top: auto;
}

