@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");

body {
  background-color: #111;
  color: #fff;
  font-family: "Press Start 2P", monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

h1 {
  margin-bottom: 40px;
  font-size: 16px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 #000;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #222;
  border: 4px solid #00ffcc;
  padding: 50px;
  box-shadow: 0 0 20px #00ffcc;
}

input[type="password"] {
  font-family: "Press Start 2P", monospace;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  border: 2px solid #00ffcc;
  background-color: #000;
  color: #0f0;
  text-align: center;
  outline: none;
  width: 250px;
}

button {
  font-family: "Press Start 2P", monospace;
  padding: 10px 20px;
  font-size: 14px;
  background-color: #00ffcc;
  border: 2px solid #fff;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #0ff;
}

.error {
  color: #ff4444;
  margin-bottom: 15px;
  font-size: 12px;
}
