body {
  margin: 0;
  padding: 0;
  background: #000000;
  font-family: Arial, sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background-color: rgba(0, 17, 51, 0.85);
  padding: 60px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 40px rgba(0, 85, 170, 0.3);
}

h1 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #00aaff;
  text-align: center;
}

form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background-color: #112244;
  border: 1px solid #0055aa;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
}

form button {
  width: 100%;
  padding: 12px;
  background-color: #0055aa;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

form button:hover {
  background-color: #0077cc;
}

.extra {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.extra a {
  color: #aaa;
  text-decoration: none;
}

.extra a:hover {
  text-decoration: underline;
}

.error {
  color: #ff4c4c;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}
