* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
    line-height: 1.75;
    background: #fff;
}
h1,h2,h3,h4,h5,h6 {
    font-family: inherit;
    color: inherit;
    font-weight: 500;
    line-height: 1.4;
    font-size: 26px;
    margin: 0 0 5px 0;
}
a {
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}
::selection {
    background: #222;
    color: #fff;
}
::-moz-selection {
    background: #222;
    color: #fff;
}
.alert {
    display: none;
}
.loginscreen {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    min-width: 280px;
    height: 100%;
}
.loginscreen > div {
    float: left;
    width: 50%;
    height: 100%;
    position: relative;
}
.login_left {
    background: #fff;
    min-height: 400px;
}
.login_left > div > div {
    width: 400px;
    padding-bottom: 40px;
}
.login_left > div > div > img {
    margin: 0 auto 30px;
    width: 300px;
}
.login_left form {
    max-width: 300px;
}
.login_left form label {
    display: block;
    margin-bottom: 5px;
}
.login_right {
    background: #eb5a3f url(../gfx/auth/logo.jpg?v=1) no-repeat center;
    background-position-x: 86%;
    background-size: 155%;
    color: #fff;
    /*border-left: 14px dotted rgb(235,90,63,0.23);*/
}
.login_right:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*background-color: rgba(0,105,204,0.4);*/
    background-color:  rgb(235,90,63,0.23);
}
.login_left > div,
.login_right > div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
            flex-direction: column;
}
.login_right > div > div {
    max-width: 400px;
}
.form-group {
    margin-bottom: 10px;
}
input.form-control {
    padding: 12px 15px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}
input.form-control:focus {
    outline: none;
    border-color: #0055a4;
}
.forgotpassword {
    float: left;
    line-height: 35px;
}
.forgotpassword a {
    font-size: 10px;
    color: #bbb;
}
.forgotpassword a:hover {
    color: #0055a4;
}
button.btn {
    float: right;
    border: 0;
    background-color: #eb5a3f;
    color: #fff;
    letter-spacing: 1px;
    padding: 10px 30px;
    cursor: pointer;
    border-radius: 4px;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}
button.btn:hover {
    background-color: #004687;
}
.help-block {
    font-size: 12px;
    line-height: 1.4;
    margin: 5px 0 0;
    color: #0055a4;
}

@media screen and (max-width: 900px) , screen and (max-height: 450px) {

    .loginscreen {
        position: relative;
    }
    .loginscreen > div {
        float: none;
        width: 100%;
        padding: 20px;
    }
    .login_left > div, .login_right > div {
        position: relative;
    }
    .loginscreen > .login_left {
        height: calc(100vh - 100px);
    }
    .loginscreen > .login_right {
        height: 100px;
    }
    .login_right > div {
        display: none;
    }
    .login_left > div > div {
        padding-bottom: 0;
    }
    .login_left > div > div > img {
        margin-bottom: 20px;
    }

    .footer {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        color: #fff;
        padding: 20px;
    }
    .footer a {
        color: #fff;
    }
}

@media screen and (max-width: 450px) {

    .login_left form {
        max-width: 100%;
        width: 100%;
    }
    .login_left > div > div {
        width: 100%;
    }
    .login_left > div > div > img {
        max-width: 70%;
        display: block;
        margin: 0 auto 30px;
    }

}


.footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    color: #bbb;
    z-index: 1;
}
.footer a {
    color: #bbb;
    transition: none;
}