body {
  background: url("https://c1.wallpaperflare.com/preview/182/936/1023/hacker-silhouette-hack-anonymous.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.container {
  background-color: black;
  opacity: 0.8;
  padding: 3rem;
  border-radius: 1rem;
  border: 2px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.form {
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 1rem;
  column-gap: 3rem;
  justify-content: center;
  align-items: center;
}

.title {
  margin: 0;
  text-align: center;
}
label {
  font-weight: bold;
}

.character-amount-container {
  display: flex;
  align-items: center;
}

.number-input {
  width: 2rem;
}

.Password-display {
  background-c5555olor: white;
  color: black;
  padding: 1rem;
  border: 1px solid darkslateblue;
  height: 2rem;
  width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  word-break: break-all;
  border-radius: 0.5rem;
}

.btn {
  background-color: #000;
  opacity: 0.5;
  grid-column: span 2;
  height: 2.5rem;
  border-radius: 5rem;
  border: 2px solid white;
  font-weight: bold;
  cursor: pointer;
}

.btn:hover {
  background-color: #ffffff33;
}
