.password-popup {
  text-shadow: 1px 1px 0px black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

hr {
  border-bottom: 1px solid white;
  box-shadow: 1px 1px 0px black;
  width: 90%;
  margin-bottom: 10px;
  margin-top: 10px;
}

.password-length input[type="range"] {
  filter: drop-shadow(1px 1px 0px black);
}

.password-length output {
  display: inline-block;
  width: 20px;
  text-align: right;
  margin-left: 4px;
}

.password-popup-content {
  position: relative;
  background-color: rgb(51, 58, 64);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px black;
  width: 400px;
  height: auto;
  color: rgb(255, 255, 255);
  text-align: center;
  margin: auto;
}

.password-popup-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgb(51, 58, 64);
  border-radius: 15px;
  border: 2px solid white;
  color: white;
  font-size: 20px;
  cursor: pointer;
  text-shadow: 1px 1px 0px black;
  box-shadow: 1px 1px 1px black;
}

.password-popup-title {
  margin-top: 0;
}

.password-options {
  margin-bottom: 10px;
}

.password-output {
  margin-top: 10px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  font-family: "Roboto Mono", monospace;
  text-align: center;
  border-radius: 5px;
}

.password-notification {
  position: fixed;
  top: 20px;
  right: -300px;
  background-color: rgba(76, 175, 80, 1);
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px 0px black;
  padding: 10px;
  border-radius: 5px;
  z-index: 99999;
  animation: slideInRight 0.5s forwards;
}

@keyframes slideInRight {
  0% {
    right: -300px;
  }
  100% {
    right: 20px;
  }
}

.password-notification.fadeOut {
  animation: slideOutRight 0.5s forwards;
}

@keyframes slideOutRight {
  0% {
    right: 20px;
  }
  100% {
    right: -300px;
  }
}

.password-generate-btn {
  color: white;
  border-radius: 8px;
  background-color: rgb(51, 58, 64);
  display: inline-block;
  font-size: 18px;
  text-shadow: 1px 1px 0px black;
}
