@charset "ISO-8859-1";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.password-input-box {
  position: relative;
  height: 40px;
}

.password-input {
  background: #fff;
  padding: 5px 15px;
  border-radius: 0px;
  padding-right: 45px;
}

.show-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #92203f;
}

.password-checklist {
  position: absolute;
  top: calc(100% + 10px);
  width: 100%;
  padding: 20px 30px;
  background: #ef547f;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.password-input:focus ~ .password-checklist {
  opacity: 1;
  transform: translateY(0);
}

.checklist-title {
  font-size: 15px;
  color: #ffff00;
  margin-bottom: 10px;
}

.checklist {
  list-style: none;
}

.list-item {
  padding-left: 30px;
  color: #fff;
  font-size: 14px;
}

.list-item::before {
  content: "\f00d";
  font-family: FontAwesome;
  display: inline-block;
  margin: 8px 0;
  margin-left: -30px;
  width: 20px;
  font-size: 12px;
}

.list-item.checked {
  opacity: 0.5;
}

.list-item.checked::before {
  content: "\f00c";
  color: #922037;
}
