/**
 * @filename: login.css Tue Jan 26 2021
 * @project: Notary v1.0
 * @copyright: Copyright (c) 2021 INNTEK.VN
 * @link: https://inntek.vn
 **/
*{
    margin:0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    font-size: 13px;
    color: #444;
    background: #FFF;
    font-weight: normal;
    font-family: 'Open Sans', sans-serif;
}
a{
    text-decoration: none;
}
a:hover{ text-decoration: none;}
img{max-width: 100%;}

.cms-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #ededed;
}

.cms-body {
    width: 100%;
    float: left;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.cms-container {
    width: 90%;
    float: left;
    margin: auto;
    display: flex;
    position: relative;
}

.cms-left {
    width: 50%;
    float: left;
    color: black;
    background: white;
    padding: 30px;
}

.cms-right {
    width: 50%;
    float: left;
    position: relative;
    outline: none;
    background: #f3f3f3;
    border: 1px solid #ededed;
    display: flex;
    box-shadow: 3px 0px 4px 0px #0000001c;
}

.cms-header {
    width: 100%;
    float: left;
}

.cms-header img {
    float: left;
    height: 66px;
}

.title-login-wrapper {
    width: 100%;
    float: left;
    text-align: center;
    margin: 15px 0px 30px;
}

.title-login-wrapper h2 {
    width: 100%;
    float: left;
    margin: 0;
    font-size: 31px;
    margin-bottom: 20px;
}

.title-login-wrapper h3 {
    font-weight: normal;
    width: 100%;
    float: left;
    margin: 0;
    font-size: 22px;
}

.cms-form-login {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
}

.cms-form-login form {
    margin: 0px auto;
    width: 60%;
    float: left;
}

p.cms-welcome-login {
    width: 100%;
    float: left;
    color: gray;
}

.cms-row-login {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

.cms-row-login label {
    width: 100%;
    float: left;
}

.input-login {
    width: 100%;
    float: left;
    padding: 10px;
    border: 1px solid gray;
    border-radius: 3px;
    outline: none;
}

.input-login:focus {
    border-color: #39a34b;
}

.cms-until-login {
    width: 100%;
    float: left;
    margin-bottom: 19px;
}

.loading-login {
    position: relative;
}

.loading-login:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/loading.gif) no-repeat center rgba(255, 255, 255, 0.616);
    background-size: 35px;
}

.cms-action-login {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
}

.cms-btn-submit-login {
    width: 80%;
    float: left;
    padding: 15px;
    background: #39a34b;
    color: white;
    border: 0;
    outline: none;
    border-radius: 5px;
    margin: auto;
}

.cms-remember {
    float: left;
    margin: 0;
    cursor: pointer;
}

.cms-remember input {
    display: none;
}

.cms-remember label {
    float: left;
    margin: 0;
    position: relative;
    padding: 1px 0px;
    padding-left: 28px;
}

.cms-remember label:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid black;
    border-radius: 5px;
}

.cms-remember input:checked + label:after {
    font-family: fontAwesome;
    content: "\f00c";
    width: 20px;
    height: 20px;
    background: #39a34b;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    color: white;
    text-align: center;
    line-height: 20px;
}

a.btn-forgot {
    float: right;
}

.cms-login-slide {width: 100%;float: left;margin: auto;}

.cms-footer-copyright {
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    width: 100%;
    margin-top: 15px;
}

@media(max-width:767px){
    .cms-left {
        width: 100% !important;
    }

    .cms-right {
        display: none;
    }

    .title-login-wrapper h2 {
        font-size: 18px;
    }

    .title-login-wrapper h3 {
        font-size: 16px;
        line-height: 32px;
    }

    .cms-form-login form {
        width: 100%;
    }
}