/*-----------------
	12. Login
-----------------------*/

.login-body {
    display: table;
    height: 100vh;
    min-height: 100vh;
}

.login-wrapper {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.login-wrapper .loginbox {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    margin: 1.875rem auto;
    max-width: 800px;
    min-height: 500px;
    width: 100%;
}

.login-wrapper .loginbox .login-left {
    align-items: center;
    background: #008282;
    flex-direction: column;
    justify-content: end;
    width: 400px;
    display: flex;
    background-blend-mode: multiply;
    border-radius: 8px 20px 20px 8px;
    position: relative;
}

.login-wrapper .loginbox .login-left:before {
    content: "";
    background-image: url(../img/login-icon-01.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 144px;
    height: 144px;
}

.login-wrapper .loginbox .login-left:after {
    content: "";
    background-image: url(../img/login-icon-02.png);
    position: absolute;
    top: 0;
    right: 0;
    width: 144px;
    height: 144px;
}

.login-wrapper .loginbox .login-right {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 40px;
    width: 400px;
}

.login-wrapper .loginbox .login-right .login-right-wrap {
    max-width: 100%;
    flex: 0 0 100%;
}

.login-wrapper .loginbox .login-right .login-right-wrap .form-group {
    position: relative;
}

.login-wrapper .loginbox .login-right .login-right-wrap .form-group label {
    font-size: 13px;
    color: #ABABAB;
    font-weight: 500;
    position: absolute;
    top: -10px;
    left: 10px;
    background: #fff;
    margin-bottom: 0;
    padding: 0px 5px;
}

.login-danger,
.star-red {
    color: #FF0000;
}

.login-wrapper .loginbox .login-right h1 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
}

.account-subtitle {
    color: #AAAAAA;
    font-size: 16px;
    margin-bottom: 1.875rem;
    text-align: left;
}

.account-subtitle a {
    color: #18AEFA;
}

.login-wrapper .loginbox .login-right h2 {
    font-size: 23px;
    font-weight: 500;
    color: #000;
    margin-bottom: 28px;
}

.login-wrapper .loginbox .login-right .forgotpass {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.remember-me .custom_check {
    color: #878787;
    font-size: 14px;
    font-weight: 400;
}

.remember-me .custom_check .checkmark {
    width: 20px;
    height: 20px;
    top: 0px;
    border: 1px solid #C1CCDB;
}

.login-wrapper .loginbox .login-right .forgotpass a {
    color: #18AEFA;
    font-size: 15px;
    margin-left: auto;
}

.login-wrapper .loginbox .login-right .forgotpass a:hover {
    color: #333;
    text-decoration: underline;
}

.login-wrapper .loginbox .login-right .dont-have {
    color: #a0a0a0;
    margin: 20px 0px;
}

.login-wrapper .loginbox .login-right .dont-have a {
    color: #18AEFA;
    font-weight: 500;
}

.login-wrapper .loginbox .login-right .dont-have a:hover {
    text-decoration: underline;
}

.profile-views {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
}