body {
  margin: 0;
  background: #140221;
  color: #460a69;
  font-family: Times new roman;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
}

.title {
  font-size: 26px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

#password {
  background: #000;
  border: 1px solid #333;
  color: #e5e5e5;
  padding: 12px;
  width: 260px;
  font-family: Times new roman;
  font-size: 15px;
  text-align: center;
  letter-spacing: 2px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

#password:focus {
  outline: none;
  border-color: #888;
  box-shadow: 0 0 8px rgba(200,200,200,0.15);
}

#password::placeholder {
  color: #555;
}

input[type="password"]:focus {
  outline: none;
  border-color: #777;
}

.hint {
  margin-top: 14px;
  font-size: 11px;
  color: #460a69;
  user-select: none;
}

.error {
  margin-top: 10px;
  font-size: 12px;
  color: #aa4444;
  display: none;
}

.status {
  font-size: 14px;
  color: #999;
  margin-top: 10px;
}

