body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000; /* Black background */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #fff;
}

.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.auth-card {
  background: #111;
  border-radius: 12px;
  padding: 2rem;
  width: 350px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

/* Forms */
.form {
  display: none;
}

.form.active {
  display: block;
}

input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #444;
  border-radius: 8px;
  background: #000;
  color: #fff;
  outline: none;
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  background: #007bff; /* Blue button */
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

/* Links (Forgot Password + Sign Up) */
p a {
  color: #007bff; /* Blue text */
  text-decoration: none;
  font-size: 0.9rem;
}

p a:hover {
  text-decoration: underline;
}

#auth-message {
  margin-top: 1rem;
  color: #fff;
  font-size: 0.9rem;
}
