/*密碼強度提示*/
#pwd-meter {
	height: 6px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

#pwd-meter .pwd-score {
	height: inherit;
    width: 0%;
    transition: .3s ease-in-out;
    background: #ff7700;
}

#pwd-meter .pwd-score.pwd-score-weak {
	width: 33%;
    background: #FF4D33;
}

#pwd-meter .pwd-score.pwd-score-mid {
	width: 66%;
    background: #FFC733;
}

#pwd-meter .pwd-score.pwd-score-strong {
	width: 100%;
    background: #00ff00;
}

.pwd-hint li.meet {
    color: #00ff00;
}