.pwd-criteria-wrapper {
  margin-top: 10px;
}

.pwd-criteria {
  font-size: 12px;
  position: relative;
  margin-left: 25px;
  font-weight: 400;
  font-family: RobotoBold;
}

.pwd-criteria--not-verified {
  color: var(--union-grey-darker);
}

.pwd-criteria--not-verified::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--union-grey-darker);
  position: absolute;
  top: 6px;
  left: -17px;
}

.pwd-criteria--error {
  color: var(--union-red);
}

.pwd-criteria--error::before,
.pwd-criteria--error::after {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 2px;
  top: 4px;
  left: -15px;
  background-color: var(--union-red);
}

.pwd-criteria--error::before {
  transform: rotate(45deg) translate(0px, 6px);
}

.pwd-criteria--error::after {
  transform: rotate(-45deg) translate(-6px, 0);
}

.pwd-criteria--valid {
  color: var(--union-green);
}

.pwd-criteria--valid::before {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  border: solid var(--union-green);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 4px;
  left: -15px;
}

@media only screen and (min-width: 720px) {
  .pwd-criteria {
    font-size: 12px;
  }
  .pwd-criteria--error::before,
  .pwd-criteria--error::after {
    width: 11px;
    top: 5px;
  }

  .pwd-criteria--valid::before {
    width: 5px;
    height: 9px;
  }
}
