
.input_password_strength{
    background: transparent !important;
}
.input_password_strength input[type="password"]:focus:focus{
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.strength_meter{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 34px;
    z-index:-1;
    border-radius:4px;
    padding-left: 15px;
}

.strength_meter div{
    width:0%;
    height: 34px;
    text-align: right;
    color: #000;
    line-height: 34px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 6px 12px;
    border-radius:4px;
}
.strength_meter div p{
    position: absolute;
    top: 22px;
    right: 0px;
    color: #FFF;
    font-size:13px;
}

.veryweak{
    background-color: #FFA0A0;
    border-color: #F04040!important;
    width:25%!important;
}
.weak{
    background-color: #FFB78C;
    border-color: #FF853C!important;
    width:50%!important;
}
.medium{
    background-color: #FFEC8B;
    border-color: #FC0!important;
    width:75%!important;
}
.strong{
    background-color: #C3FF88;
    border-color: #8DFF1C!important;
    width:100%!important;
}