<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
}
html,body{
    height: 100%;
    font-size: 12px;
}
input,select,textarea{
    outline: none;
    border: none;
}
.clear::after{
    content:'';
    display: block;
    clear:both;
    visibility: hidden;
}
.alert{
    margin-bottom: 10px;
    padding: 10px;
}

.wrapper{
    position: relative;
    height: 100%;
    background: #2c3e50;
    overflow: hidden;
}
.login-box{
    position: absolute;
    left:50%;
    top:50%;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 15px;
}
.find-passwd-box{
    top: 40%;
    padding: 15px;
}
.page-title{
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #2c3e50;
}
.back-btn{
    position: absolute;
    right: 0;
    bottom: 2px;
}
@media screen and (max-width: 768px){
    .login-box{
        width:80%;
        margin-left: -40%;
        margin-top: -150px;
    }
    .find-passwd-box{
        width: 96%;
        margin-left: -48%;
        margin-top: -200px;
    }
}
@media screen and (min-width: 768px){
    .login-box{
        width:400px;
        margin-left: -200px;
        margin-top: -160px;
    }
}

.login-box-title{
    margin: 20px 0;
    text-align: center;
}
.input-group-icon{color:#00A0E9;}
.table-btn{
    font-size: 12px;
    padding: 4px 6px;
}
.find-passwd{
    position: absolute;
    right: 0;
    bottom: 0;
}
.find-passwd a{
    color: #555;
}</pre></body></html>