/* password strength */

.form-group > #password {
    margin-bottom: 15px;
}

#password-strength-wrapper {
    position: relative;
    height: 2px;
    margin-top: -17px;
    margin-bottom: 0;
    bottom: 0;
}

#password-strength {
    height: 100%;
    font-size: 12px;
    line-height: 2px;
    color: #fff;
    text-align: center;
    -webkit-transition: width 0.6s ease;
    -moz-transition: width 0.6s ease;
    -ms-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.password-short {
    background-color: #ff4000;
    width: 5%;
}

.password-weak {
    background-color: #e8850c;
    width: 25%;
}

.password-ok {
    background-color: #ffc300;
    width: 50%;
}

.password-strong {
    background-color: #e8e20c;
    width: 75%;
}

.password-very-strong {
    background-color: #69ff0d;
    width: 100%;
}

#password-strength-feedback {
}