body {
  background: linear-gradient(to bottom right, #4B0082, #006400);
  color: white;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

input[type="password"] {
  padding: 0.5rem;
  border: none;
  border-radius: 6px;
  margin-top: 1rem;
  width: 60%;
}

button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #32CD32;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #228B22;
}

#message {
  margin-top: 1rem;
  font-style: italic;
}

