/* ================= Login Page =================== */

.login {
    text-align: center;
    padding-top: 50px;
    width: 352px;
    margin: 0 auto;
}

.login h1 {
    font-size: 30pt;
    margin-left: -5px;

    /* Change hexidecimal value to match theme */
    color: #0D3B66;
}

.login-input {
    margin: 0 auto;
    border-radius: 0px;
}

.login-button {
    background-color: #fff;
    padding: 10px 25px;
    font-size: 12pt;
    float: left;
    font-weight: 700;

    /* Change hexidecimal values to match theme */
    border: 3px solid #0D3B66;
    color: #0D3B66;
}

.login-button:hover {
    color: #fff;

    /* Change hexidecimal value to match theme */
    background-color: #0D3B66;
}

.login-sidebar {
    height: 100px;
    width: 100%;
    text-align: center;

    /* Default color incase the gradient doesn't work */
    background: #0D3B66;
    /* Change the last hexidecimal value to show the color you want */
    background: -webkit-linear-gradient(to top, #1F1C18, #0D3B66);
    background: linear-gradient(to top, #1F1C18, #0D3B66);
}

.login-label {
    float: left;
    color: #999;
    font-size: 15pt;
    font-weight: 200;
}

.logo {
    height: 159px;
    width: 352px;
}

/* Screen is less than 991px wide */
@media (max-width: 991px) {
    .login-icon {
        height: 75px;
        width: 75px;
        margin-top: 10px;
    }
    .login-button {
        float: none;
    }
}

/* Screen is more than 992px wide */
@media (min-width: 992px) {
    .login {
        margin-left: 550px;
        padding-top: 25vh;
        height: 100%;
    }

    .login h1 {
        font-size: 39pt;
    }

    .login-sidebar {
        width: 400px;
        height: 100%;
        position: fixed;
    }

    .login-icon {
        height: 250px;
        width: 250px;
        margin-left: 0px;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

}