body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #2c3e50;
}

.overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}

.password-container {
  background: #ecf0f1;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

h2 {
  color: #34495e;
  margin-bottom: 20px;
}

input {
  width: 80%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button {
  width: 80%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #3498db;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #2980b9;
}

#statusMessage {
  margin-top: 15px;
  color: red;
  font-size: 14px;
}
