/** login page css **/
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 65px);
}
.login-page a{
    color: #000;
    display: block;
    margin-top: 5px;
}
.logo{
    width: 140px;
    margin-bottom: 20px;
}
.login-content{
    padding-left: 20px;
}
.login-content h4{
    font-size: 22px;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 40px;
}
.log-input{
    margin-bottom: 30px;
}
.log-input input{
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    background-color: #F0F5F7;
    border: none;
    width: 50%;
    padding: 5px 10px;
    border-radius: 5px;
}
.log-input input::placeholder{
    color: #000;
    text-transform: capitalize;
}
.log-input label{
    font-weight: normal;
    display: block;
}
.log-submit input[type="submit"] {
    min-width: 123.5px;
    border-radius: 7px;
    background-image: linear-gradient(
106deg, #65e0f1 2%, #1babfc 40%);
    border: none;
    color: #fff;
    padding: 5px;
}

.lg-footer{
    background-color: #EDEDED;
    padding: 10px 0;
}
.lg-footer p{
    color: #6E6E6E;
    margin-bottom: 0;
}
.sign-text{
    margin-top: 20px;
}
.sign-text a{
    display: inline-block;
}
.user-list{
    list-style: none;
}
.user-list li a{
    color: #000;
    font-size: 14px;
}



@media screen and (max-width: 768px){
    .container-fluid{
        width: 100%;
    }
    .center-flex{
        display: block;
    }
    .login-page {
        height: calc(100vh - 50px);
    }
    .login-content{
        padding: 0;
        text-align: center;
    }
    .logo {
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .log-input input{
        width: 80%;
    }
    .lg-footer .container{
        display: flex;
    }
    .lg-footer p{
        font-size: 12px;
        line-height: 15px;
    }
}