body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #6a0dad, #9b4dff);
  font-family: Arial, sans-serif;
  color: white;
  margin: 0;
}

.password-container {
  text-align: center;
}

input {
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  margin-top: 20px;
  font-size: 1rem;
}

button {
  padding: 12px 25px;
  margin-left: 10px;
  border-radius: 10px;
  border: none;
  background-color: #c084fc;
  color: white;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background-color: #a855f7;
}

#errorMsg {
  margin-top: 15px;
  color: #ff6b81;
}
