.password-requirements {
  background: #f5f5f5;
  padding: 8px 12px;
  margin-top: 10px;
  border-radius: 4px;
  font-size: 13px;
  color: #4d4d4d;
}

.password-requirement {
  line-height: 25px;
}
.password-requirement::after {
  content: "";
  display: block;
  clear: both;
}

.password-requirement .requirement-icon {
  float: left;
  width: 20px;
  line-height: 25px;
}

.password-requirement span {
  display: block;
  margin-left: 27px;
  line-height: 25px;
}

.password-strength-wrapper {
  margin-top: 10px;
}
.password-strength-wrapper::after {
  content: "";
  display: block;
  clear: both;
}

.password-strength-container {
  float: left;
  width: calc(100% - 78px);
  height: 8px;
  background: transparent;
}
.password-strength-container::after {
  content: "";
  display: block;
  clear: both;
}

.password-strength-segment {
  float: left;
  width: calc((100% - 8px) / 3);
  height: 8px;
  background-color: #dee2e6;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 4px;
}
.password-strength-segment:last-child {
  margin-right: 0;
}

.password-strength {
  width: 0;
  height: 100%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.password-strength-label {
  float: left;
  width: 70px;
  margin-left: 8px;
  line-height: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: left;
}

.password-wrapper {
  position: relative;
}

.password-strength-header {
  line-height: 24px;
  font-size: 15px;
}

.reveal-secret {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
}

.password-wrapper input {
  padding-right: 32px;
}
