body {
  margin: 0;
  padding: 0;
  font-family: 'Comic Sans MS', cursive;
  background: linear-gradient(135deg, #000428, #004e92);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
}

.login-container {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 20px #00e6ff;
  width: 300px;
}

h1 {
  margin-bottom: 10px;
}

.tagline {
  font-size: 14px;
  margin-bottom: 20px;
  color: #bbb;
}

form {
  display: flex;
  flex-direction: column;
}

input {
  padding: 10px;
  margin: 8px 0;
  border: none;
  border-radius: 8px;
  outline: none;
}

button {
  background: #00e6ff;
  border: none;
  padding: 10px;
  margin-top: 10px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

button:hover {
  background: #00bcd4;
}

.signup-link {
  margin-top: 15px;
  font-size: 13px;
}

.signup-link a {
  color: #00e6ff;
  text-decoration: none;
}
