#pswmeter {
  height: 4px;
  background-color: #eee;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-top: 4px;
}

#pswmeter-message {
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  margin-left: 12px;
}

.password-strength-meter-score {
  height: inherit;
  width: 0%;
  transition: 0.3s ease-in-out;
  background: "#ff7700";
}

.password-strength-meter-score.psms-25 {
  width: 25%;
  background: "#ff7700";
}
.password-strength-meter-score.psms-50 {
  width: 50%;
  background: "#ffff00";
}
.password-strength-meter-score.psms-75 {
  width: 75%;
  background: "#aeff00";
}
.password-strength-meter-score.psms-100 {
  width: 100%;
  background: "#00ff00";
}

#show-password,
#show-password2 {
  margin-top: -30px;
  float: right;
  margin-right: 10px;
  cursor: pointer;
}
