<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.card-bg-login{
    width: calc(100% - 20px);
    max-width: 500px;
    padding: 0 80px 40px;
    background: rgba(255,255,255,1);
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border: 1px solid #dedede;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.login-page {
	position: fixed;
	align-items: center;
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
    background-size: cover;
    background-attachment: fixed;
}
.login .logo{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 217px;
    height: 120px;
    margin: 20px auto 20px;
}
.login .logo img{
    max-width: 100%;
    max-height: 100%;
}

.login-page .text-input-group,
.login-page .notification-error{
    width: 100%;
    margin-bottom: 20px;
    max-width: none;
}

.horizontal-rule{
    width: calc(100% + 161px);
    margin-left: -81px;
    background-color: rgba(0,0,0,0.1);
    height: auto;
}

.login-page .title{
    margin: 30px 0;
}

.login-page .text-input-group{
    background: none;
    height: auto;
    min-height: 42px;
}

.login-page .text-input-field{
    /*background: #fff;*/
    border: 1px solid rgba(0,0,0,0.2);
    height: 50px;
}

.login-page .text-input-field + .text-input-label{
    z-index: 1;
    margin-top: 7px;
}
.login-page .text-input-field:focus + .text-input-label, .login-page .text-input-field:valid + .text-input-label{
    top: -10px;
}

.login-page .text-input-field, .login-page .text-input-field:valid, .login-page .text-input-field:focus{
    padding-top: 20px;
}

.login-page button{
    margin: 0 4px;
}

.login-page button,
.login-page button:hover{
    min-width: 120px;
    height: 40px;
    position: relative;
    font-weight: bold;;
    margin-bottom: 4px;
}

.login-page a.lnk{
    font-weight: normal;
    color: #125789 !important;
    font-size: 14px;
}
.login-page a.lnk:hover{
    color: #1976ba !important;
    text-decoration: underline !important;
}

.login-page p,
.login-page a{
    font-weight: normal;
}

.login-page button i.fab,
.login-page button i.fa{
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    font-size: 18px;
    padding-top: 10px;
}

.login-page button.has-icon{
    padding-left: 40px !important;
}


/*strength bar*/
#strength {
    width: 100%;
    margin-bottom: 20px;
    margin-top: -10px;
    float: left;
}

#strength span{
    display: block;
    font-size: 12px;
}

#strength-bar {
    width: 0%;
    height: 5px;
    transition: width 500ms linear;
    overflow: hidden;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    float: left;
}

.strength-bar-success {
    background: #080;
}

.strength-bar-danger {
    background: #d00;
}

.strength-bar-warning {
    background: #f50;
}

#show-password{
    position: absolute;
    right: 0;
    top: -9px;
    z-index: 2;
    width: 50px;
    height: 50px;
    font-size: 18px;
    color: #aaa;
    padding-top: 10px;
    cursor: pointer;
    text-align: center;
}

.login-foot{
    width: 100%;
    height: 40px;
    background: #fff;
    position: fixed;
    bottom: 0;
    text-align: center;
    padding-top: 10px;
}
.login-foot img{
    width: 160px;
    margin-left: 5px;
}
.login-foot p{
    font-size: 14px;
}
.login-foot .foot-font-bold {
    font-size: 14px;
    font-weight: bold;
}

p.small-text{
    font-size: 13px;
    color: #777;
}

@media only screen and (max-width:1600px){
    .login-page{
        position: relative;
        padding-top: 40px;
        padding-bottom: 100px;
        min-height: 100vh;
    }
}

@media only screen and (max-width:567px){
    .card-bg-login{
        padding: 0 40px 40px;
    }
    .horizontal-rule{
        width: calc(100% + 80px);
        margin-left: -40px;
    }
}
</pre></body></html>