#loginContainer,
.loginLeft,
.loginLogo,
.loginForm {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-family: roboto;
    letter-spacing: 0.1em;
}

#loginContainer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    height: 100%;
    background-image: url('../../images/loginBackground.jpg');
    background-repeat: no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    opacity: 0.95;
}

.loginLeft,
.loginLogo,
.loginForm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.loginRigth {
    width: 80%;
    height: 100%;
}

.loginLeft {
    width: 20%;
    height: 100%;
    background-color: rgba(242, 241, 239, 0.92);
    min-width: 350px;
}

.loginLogo {
    width: 100%;
    height: 50%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-bottom: 46px;
}

.loginOrion {
    font-size: 2em;
    padding: 25px 0;
    line-height: 26px;
    font-style: italic;
    font-weight: 700;
}

.loginForm {
    width: 100%;
    height: 50%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: 400;
}

.wrongCredentials {
    font-family: roboto;
    color: red;
    font-size: 1em;
}

.loginForm label {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100px 1fr;
    grid-template-columns: 100px 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: stretch;
    -webkit-justify-content: stretch;
    -moz-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    padding: 8px 0;
}

.loginForm input {
    border: 1px solid rgba(46, 49, 49, 0.9);
}

.loginBtn {
    -ms-grid-column: 2;
    grid-column: 2;
}