html {
    position: relative;
    min-height: 100%;
}
html, body {
    height: 100%;
}
body {
    background: #fff;
    color: #3f4b57;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
i.fa {
    margin-right: 6px;
}
.container-fluid, .row {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.login-holder {
    width: 100%;
    height: 100%;
    float: left;
    padding: 50px;
}
.separator {
    position: absolute;
    right: -77px;
    z-index: 1;
}
.separator img {
    display: block;
    width: auto;
    height: 100%;
}
.login-left {
    height: 100%;
    background: #fff;
}
.login-left .login-header {
    float: left;
    width: 100%;
}
.login-left .login-content {
    float: left;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.login-left .login-content .form-inner.hide {
    display: none;
}
.login-left .login-content .login-block .login-intro {
    font-weight: 500;
    margin-bottom: 25px;
}
.login-left .login-content .login-block .forgot-password {
    color: #f39437;
    padding-left: 10px;
    transition: all .2s;
    text-decoration: none;
}
.login-left .login-content .login-block .forgot-password :hover {
     color: #1F4D87;
     padding-left: 15px;
}
.login-left .login-content .login-block .forgot-password .icon-chevron-right {
    font-size: 12px;
}
.login-left .login-content .login-block .btn {
    width: 100%;
    font-size: 21px;
}
.login-right {
    height: 100%;
    background: #2196F3;
    background-image: url('/assets/images/login-background-image.jpg');
    background-position: bottom right;
    background-size: cover;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    align-items: flex-end;
    justify-content: flex-end;
    @media only screen (max-width: 768px) {
        display: none;
    }
}
.login-right img {
    display: block;
    max-width: 100%;
    height: auto;
    opacity: 0.50;
}
div.login-container {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
div.login-container div.login-left, div.login-right {
    height: 100%;
}
div.login-container div.login-left {
    width: 42.1%;
    background: #fff;
    padding: 50px;
}
div.login-container div.login-inner {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
}
div.login-container div.separator {
    position: absolute;
    left: 50%;
    width: 3%;
    height: 100%;
    z-index: 2;
    margin-top: 0;
    margin-left: -122px;
}
div.login-container div.separator:before {
     position: absolute;
     content: "";
     width: 100%;
     height: 100%;
     background-color: #fff;
     z-index: 1;
     clip-path: polygon(100% 0, 0 0, 0 100%);
}
div.login-container div.separator:after {
     position: absolute;
     content: "";
     width: 100%;
     height: 100%;
     z-index: 2;
     background-color: transparent;
     clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.form-group label.error {
    color: red;
    padding-top: 8px;
}
.input-group {
    border-radius: 5px;
    background-color: #f0f1ef;
    border: solid 1px #d5dae1;
    font-size: 18px;
}
.input-group .input-group-addon {
    border: 0;
    background-color: transparent;
    color: #f39437;
    font-size: 18px;
    padding-left: 25px;
    padding-right: 25px;
}
.input-group .input-group-addon .toggle_show_password {
    color: #c2c3c1;
    cursor: pointer;
}
.input-group .input-group-addon .toggle_show_password .text {
     color: #f39437;
}
.input-group .form-control {
    border: 0;
    background-color: #f0f1ef;
    box-shadow: none;
    font-size: 18px;
    padding-left: 0;
    color: #3f4b57;
}
.input-group .form-control :-webkit-autofill {
     -webkit-box-shadow: 0 0 0 1000px #f0f1ef inset !important;
}
.auth-message {
    color: #f39437;
    margin-bottom: 25px;
}
.alert {
    margin-bottom: 25px;
    border-radius: 5px;
}
