@font-face {
  font-family: 'Pragmatica ExtraLight Reg';
  font-style: normal;
  font-weight: normal;
  src: local('Pragmatica ExtraLight Reg'), url('Pragmatica-ExtraLight.woff') format('woff');
  }
body {
  background-color: #444;
  margin: 0;
  color: #eee;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family:'Pragmatica ExtraLight Reg';
}

.container {
  background-color: #276801;
  padding: 5rem;
  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: 1.2rem;
  column-gap: 5rem;
  justify-content: center;
  align-items: center;
  width: 500px;
}

.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-color: white;
  color: black;
  padding: 1rem;
  border: 1px solid #333;
  height: 2rem;
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  word-break: break-all;
  border-radius: .5rem;
}

.btn {
  grid-column: span 2;
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 1rem 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 1rem;
}

.btn:hover {
  background-color: #077a58;
}