﻿.section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-image: url('/Content/images/login-background.jpg');
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.lg-b { text-align: center; }

.lg-b img {
    max-width: 180px;
    display: inline-block;
    margin: 0 auto;
}

.login-box {
    width: 300px;
    margin: 0 0 15px;
}

.login-box form { margin-top: 35%; }

.text-field {
    height: 33px;
    border-radius: 3px;
    margin-top: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    display: block;
    width: 100%;
    padding: 8px 12px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    font: inherit;
}

.text-field:-moz-placeholder { color: #999; }

.text-field::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.text-field:-ms-input-placeholder { color: #999; }

.text-field::-webkit-input-placeholder { color: #999; }

.text-field:focus {
    border-color: #3898EC;
    outline: 0;
}

.rem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 36px;
    padding-left: 1px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.rem label.remetext {
    margin-left: 10px;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}

input.submit-button {
    width: 300px;
    height: 37px;
    border-radius: 3px;
    background-color: #48c0ac;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
    display: inline-block;
    padding: 9px 15px;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

.lg-c {
    position: relative;
    right: 0%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(11, 3, 3, .9);
}

@media (min-width: 576px) {
    .lg-c {
        right: 0%;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .section { background-size: cover; }

    .lg-c {
        right: 8%;
        width: 410px;
        flex: 0 1 410px;
    }
}

@media all and (max-height: 464px) {
    .login-box form { margin-top: 30px !important; }

    .lg-b img { max-width: 150px !important; }
}

@media all and (max-height: 353px) {
    .section { height: 100%; }
}