<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.login-page .theme-card .theme-form label {
    color: #426da9 !important;
    font-size: unset !important;
    font-weight: 600 !important;
    line-height: 1;
}

.fl-form input.fl-input,
.fl-form select.fl-select,
.fl-form textarea.fl-textarea {
    line-height: 2 !important;
}


input#pwd {
    width: 180px;
    padding: 3px;
    color: #000;
    float: left;
    margin-right: 10px;
}

#password_strength_wrap {
    border: 1px solid #D5CEC8;
    display: none;
    float: left;
    padding: 10px;
    position: relative;
    width: 320px;
    margin: 0px 0 10px 0;
}

#password_strength_wrap:before,
#password_strength_wrap:after {
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border: 10px solid transparent;
    /* arrow size */
}

#pswd_info ul {
    list-style-type: none;
    margin: 5px 0 0;
    padding: 0;
}

#pswd_info ul li {
    background: url(icon_password_strength.png) no-repeat left 2px;
    padding: 0 0 0 20px;
}

#pswd_info ul li.valid {
    background-position: left -42px;
    color: green;
}

#passwordStrength {
    display: block;
    height: 5px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.strength0 {
    background: none;
    /* too short */
    width: 0px;
}

.strength1 {
    background: none repeat scroll 0 0 #FF4545;
    /* weak */
    width: 25px;
}

.strength2 {
    background: none repeat scroll 0 0 #FFC824;
    /* good */
    width: 75px;
}

.strength3 {
    background: none repeat scroll 0 0 #6699CC;
    /* strong */
    width: 100px;
}

.strength4 {
    background: none repeat scroll 0 0 #008000;
    /* best */
    width: 150px;
}</pre></body></html>