/* PAGE BACKGROUND */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000; /* match your dashboard theme */
  color: #fff;
}

/* SIGNUP BOX */
.signup-container {
  width: 420px;
  margin: 80px auto;
  background-color: #111; /* same container style */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 224, 170, 0.15);
}

/* SIGNUP TITLE */
.signup-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #00e0aa; /* NEON green accent */
  font-weight: 700;
  letter-spacing: 1px;
}

/* INPUT FIELDS */
.input-group {
  margin-bottom: 18px;
}

.input-group label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #ccc;
}

/* textboxes */
.input-group input {
  width: 100%;
  padding: 12px;
  background-color: #222; /* same as dashboard input style */
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  outline: none;
}

/* focus effect */
.input-group input:focus {
  border: 1px solid #00e0aa; /* neon border focus */
}

/* SUBMIT BUTTON */
.btn {
  width: 100%;
  padding: 12px;
  background-color: #00e0aa;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #00c495;
}

/* LOGIN LINK */
.login-link {
  text-align: center;
  margin-top: 15px;
  color: #ccc;
  font-size: 14px;
}

.login-link a {
  color: #00e0aa;
  font-weight: 600;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}
.terms {
  font-size: 13px;
  color: #ccc;
  text-align: center;
  margin: 10px 0 15px;
}

.terms a {
  color: #00e0aa;
  font-weight: 600;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}
/* Password input container with eye inside */
.password-group {
  position: relative;
}

.password-group input {
  width: 100%;
  padding: 12px 40px 12px 12px; /* add right padding for eye */
  background-color: #222;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  outline: none;
}

.password-group .toggle-pass {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #ccc;
  font-size: 18px;
}

.password-group .toggle-pass:hover {
  color: #00e0aa;
}

/* Password input group (matches all inputs) */
.password-group {
  position: relative; /* for eye icon */
}

.password-group input {
  width: 100%;
  padding: 12px; /* same as other inputs */
  background-color: #222; /* same as other inputs */
  border-radius: 8px;
  border: none;
  color: white;
  font-size: 14px;
  outline: none;
  padding-right: 40px; /* space for eye icon */
}

/* Eye icon inside password field */
.password-group .toggle-pass {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #ccc;
  font-size: 18px;
}

.password-group .toggle-pass:hover {
  color: #00e0aa;
}
