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

body {
  background: linear-gradient(135deg, #2d3a6e, #4a69bd);
  color: white;
  font-family: 'Press Start 2P', cursive;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background: #222;
  border: 4px solid #fff;
  padding: 20px;
  width: 320px;
  box-shadow: 0px 0px 0px 4px #555, 8px 8px 0px #000;
}

.title {
  font-size: 14px;
  text-align: center;
  margin-bottom: 15px;
}

.password-box {
  display: flex;
  margin-bottom: 15px;
}

.password-box input {
  flex: 1;
  padding: 8px;
  font-family: 'Press Start 2P', cursive;
  font-size: 10px;
  background: black;
  color: lime;
  border: 2px solid white;
}

.password-box button {
  background: #444;
  color: white;
  border: 2px solid white;
  cursor: pointer;
}

.settings {
  font-size: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.pixel-btn {
  background: #00b894;
  color: white;
  border: 3px solid white;
  padding: 8px;
  font-size: 10px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0px 0px 0px 3px #555, 4px 4px 0px #000;
}

.pixel-btn:hover {
  background: #55efc4;
}

.strength {
  margin-top: 15px;
  font-size: 8px;
}

.strength-bar {
  background: #555;
  height: 8px;
  border: 2px solid white;
  margin-top: 5px;
}

#strength-fill {
  height: 100%;
  background: lime;
  width: 100%;
}
