@charset "utf-8";
/* CSS Document */

.strength-password{
    background:rgba(243, 243, 243, 0.3) !important;
    text-indent: 6px;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border .25s linear, color .25s linear;
    -moz-transition: border .25s linear, color .25s linear;
    -o-transition: border .25s linear, color .25s linear;
    transition: border .25s linear, color .25s linear;
    -webkit-backface-visibility: hidden;
    height: 20px !important;
    position: relative;
    z-index: 11;
}

.strength-password:focus{
    outline:0 !important;
}

.controls{
    position: relative;
}

.strength_meter{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 30px;
    z-index:9;
    padding-right:13px;
}
.button_strength {
    text-decoration: none;
    color: #FFF;
    font-size: 13px;
}
.strength_meter div{
    width: 20%;
    height: 30px;
    text-align: right;
    color: #000;
    line-height: 30px;
    -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-right: 12px;
}
.strength_meter div p{
    position: absolute;
    top: 22px;
    right: 0px;
    color: #FFF;
    font-size:13px;
}

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


#password-container{
    width: 63%;
    position: relative;
}

#password-container .strength_meter div{
    width: 80%;
}

#password-container.longer{
    width: 70%;
    position: relative;
}

#password-container .veryweak{
    width:80%!important;
}
#password-container .weak{
    width:80%!important;
}
#password-container .medium{
    width:90%!important;
}
#password-container .strong{
    width:100%!important;
}