﻿/* Mobile */
@media only screen and (max-width: 600px) {
    /* Login */
    body#loginPage {
        background-size: auto 50%;
        background-repeat: no-repeat;
        background-position: top center;
    }

    .loginContainer {
        grid-template-columns: 100%;
    }

        .loginContainer form {;
            width: 100%;
            margin: unset;
            height: 100%;
            padding: 50px 25px 25px 25px;
            border-radius: 25px 25px 0 0;
        }

    .loginFormWrap {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        height: 70%;
        margin-top: auto;
        border-radius: 25px 25px 0 0;
    }

    .form-group.forgotPassword {
        align-self: flex-end;
    }

    #LoginimageWrap {
        display: none;
    }
}

/* Tablet [PORTRAIT] */
@media (min-width:600px) and (max-width: 1190px) {
    body#loginPage {
        background-size: auto 75%;
        background-repeat: no-repeat;
        background-position: top center;
    }

    .loginContainer {
        grid-template-columns: 100%;
    }

    #LoginimageWrap {
        display: none;
    }

    .loginFormWrap {
        height: 60%;
        margin-top: auto;
        border-radius: 50px 50px 0 0;
    }
}

/* Tablet [LANDSCAPE] */
@media (min-width:1190px) and (max-width: 1450px) {
    .loginContainer {
        grid-template-columns: 40% auto;
    }
}


