body {
  background-color: #0c0c1e;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  padding: 40px;
  background-color: #1a1a2f;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  width: 90%;
  max-width: 400px;
}

h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #00ffd8;
}

p {
  margin: 10px 0;
  font-size: 16px;
}

input[type="password"] {
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  border: none;
  margin-bottom: 20px;
  font-size: 16px;
  background-color: #2e2e44;
  color: #ffffff;
}

button, .button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background-color: #00ffd8;
  color: #0c0c1e;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

button:hover, .button:hover {
  background-color: #00c9b3;
}
