@import url("https://fonts.googleapis.com/css?family=Gotham:400,300,500,700");
body {
    background-image: url(/images/login/LoginBackground.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 13px;
}

    body::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: rgb(0, 0, 0, 0.14);
        z-index: 0;
    }


.btn {
    font-size: 13px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.input-group-addon, .form-control, .btn {
    font-size: 13px;
    height: 36px;
}
.login-screen {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-box {
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.4);
    background-color: #ffffff;
    max-width: 100%;
    margin-right: 8%;
}
#loginButton {
    font-family: Gotham, sans-serif;
    font-weight: 400;
}

@media only screen and (max-width: 1366px){
    .login-box {
        margin-right: 5%;
    }
}
@media only screen and (max-width: 767px){
    .login-screen {
        justify-content: center;
        padding: 0 15px;
    }

    .login-box {
        margin-right: 0;
    }
}