.login-content {
    /*background-color: greenyellow;*/
    position: relative;
    height: 538px;

    width: 100%;

    top: 25%;
    align-content: center;
}
a{
    text-decoration:none;
}
.login-back {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 130;
    width: 100%;
    height: 100%;
    display: none;
    /*opacity: 1;*/
    /*visibility: hidden;*/
    /*transition: 5s all cubic-bezier(0.08, 0.03, 0.22, 0.87) 5s;*/
}

.login-mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    /*display: none;*/
    /*cursor: url("../../img/icon/index/cursor-x.png"), auto;*/
    -webkit-transition: opacity .5s linear 0s, z-index .1s linear .5s;
    transition: opacity .5s linear 0s, z-index .1s linear .5s;

}

.login-mask.show {
    z-index: 130;
    opacity: 1;
    -webkit-transition: opacity .5s linear 0s, z-index .1s linear 0s;
    transition: opacity .5s linear 0s, z-index .1s linear 0s;
}

.login-form {
    background-color: white;
    z-index: 130;
    /*height: 100%;*/
    width: 39%;
    margin-left: 30%;
    transition: .5s all linear 0s;

}

.form-horizontal-login {
    /*background-color: aqua;*/
    height: 100%;

}

.form-title {
    /*background-color: aquamarine;*/
    height: 30%;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 24pt;
    margin-bottom: 15px;
    padding-top: 32px;

}

.form-title span {
    margin-left: 45%;
}

.form-input {
    position: relative;
    height: 16%;
    /*background-color: antiquewhite;*/
}
@media screen and (max-width: 767px){
    .login-form{
        width: 96%;
        margin-left: 2%;
    }

    /*.login-form*/
}


.form-input input {
    display: block;
    height: 2.2em;
    width: 57%;
    border: 2px solid #ccc;

    border-radius: 8px;
    margin-left: 20%;
}

.form-input input:first-child {
    margin-bottom: 1.4em;
}

.form-info {
    /*background-color: beige;*/
    margin-top: 16px;
    color: #2d2d2d;
}

.form-info .form-autologin {
    position: relative;
    margin-left: 20%;
    display: inline;
    font-size: 9pt;

}

.form-info .form-autologin input {
    position: absolute;
    visibility: hidden;

}

.form-info .form-autologin label {
    display: inline-block;
    width: 9pt;
    height: 9pt;
    /*border: 1px solid #c00;*/
    background-image: url('/static/resource/checkbox_unselected.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /*border-radius: 50%;*/
}

.form-info .form-autologin input:checked + label {
    /*background-color: #1b53ff;*/
    background-image: url('/static/resource/checkbox_selected.png');
}

.form-link {
    display: inline;
    position: fixed;
    margin-right: 9%;
    right: 31%;
    font-size: 9pt;
    color: #818181;
    transition: .5s all linear 0s;
}
@media screen and (max-width: 767px){
    .form-link{
        margin-right: 0;
        right: 23%;
    }
    /*.login-form*/
}
.form-submit-login {
    /*background-color: aquamarine;*/
    text-align: center;
    display: flex;
align-items: center;
height: 43%;
}

.btn-submit-login {
    padding: 6px 12px;
    width: 32%;
    background-color: #1b53ff;
    margin-top: 15px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: white;
    font-size: 12pt;
    margin-bottom: 32px;
}