#password-strength {
    height: 24px;
    border-radius: 5px;
    margin-top: 30px;
    box-shadow: 2px 2px 5px 0px #00000033;
    background-color: white;
    overflow: hidden;
  }

  
  #password-strength .progress-bar {
    /*border-radius: 5px 0px 0px 5px;*/
    padding: 5px 10px;
  }
  
  #password-strength .bg-danger {
    background-color: red;
  }
  
  #password-strength .bg-warning {
    background-color: orange;
  }
  
  #password-strength .bg-success {
    background-color: green;
  }
  
  #password-conditions ul {
    margin-left: 0;
    padding-left: 0;
  }

  #password-conditions ul li {
    font-size: 14px;
  }

  #password-conditions .password-condition {
    color: grey;
    list-style: none;
    height: 30px;
    vertical-align: top;
    box-sizing: border-box;
    background-image: url('/images/icons/flat/delete_grey_20.png');
    background-repeat: no-repeat;
    padding-left: 30px;
    background-size: 24px;
    padding-top: 4px;
}
  
  #password-conditions .password-condition.met {
    background-image: url('/images/icons/flat/ok_20.png');
  }
