body {
  background: linear-gradient(to bottom, #0a0f2c, #1e2e50);
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.auth-container {
  background-color: #111c44;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
  width: 100%;
  max-width: 400px;
}

.auth-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #00bfff;
}

.auth-container form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-container input {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #1e2b4a;
  color: #fff;
  font-size: 16px;
}

.auth-container input::placeholder {
  color: #a9bdd9;
}

.auth-container button {
  background: #00bfff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  color: #0a0f2c;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

.auth-container button:hover {
  background-color: #0099cc;
}

.auth-container p {
  margin-top: 16px;
  text-align: center;
  color: #ccc;
}

.auth-container a {
  color: #00bfff;
  text-decoration: none;
}

.auth-container a:hover {
  text-decoration: underline;
}