body {
  background-color: #0A083A;
}
body {
  background-color: #0A083A;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
}
.login-container {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 340px;
}
.login-container h2 {
  margin-bottom: 20px;
  color: #333;
}
.login-container input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.login-container button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}
.login-container button:hover {
  background-color: #0056b3;
}
.footer-links {
  margin-top: 15px;
  font-size: 12px;
  color: #666;
}
.footer a {
  color: #007bff;
  text-decoration: none;
}
.footer {
  margin-top: 15px;
  font-size: 12px;
  color: gray;
}