/*Extra small devices (portrait phones, less than 576px)*/
/*No media query since this is the default in Bootstrap*/

/*Small devices (landscape phones, 576px and up)*/
@media (max-width: 575px) {
    .auth .row > [class*='col-']:first-child {
        min-height: 65vh;
        padding-top: 30px;
    }

    .auth .row > [class*='col-']:last-child {
        min-height: 35vh;
    }
}

@media (min-width: 576px) {
    .auth .row > [class*='col-'] {
        min-height: 50vh;
    }

    .auth .row > [class*='col-']:first-child {
        padding-top: 30px;
    }
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .auth .row > [class*='col-']:first-child {
        min-height: 100vh;
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}


/*----------------*/

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575px) {
}

@media (min-width: 576px) {

}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767px) {
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991px) {
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}