﻿/*All except small devices*/
@media screen and (min-width: 577px) {
    .forgot-header-mobile {
        display: none;
    }

    .forgot-header {
        display: block;
    }
}

/*Small devices (landscape phones, 576px and down)*/
@media screen and (max-width: 576px) {

    .forgot-header-mobile {
        display: block;
    }

    .forgot-header {
        display: none;
    }

    .forgot-header-confirm {
        font-size: 18px;
        line-height: 1.56;
        margin-bottom: 16px;
    }

    .forgot-sub-header {
        margin-bottom: 24px;
    }
}

/* Medium devices (tablets, 768px and down)*/
@media screen and (max-width: 768px) {
    .login-main {
        width: 90% !important;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-text {
        width: 90%;
    }

    body {
        overflow: scroll;
    }
}

 /*Large devices (desktops, 992px and down)*/
@media screen and (max-width: 992px) {
    :root {
        --font-size-header: 22px;
        --font-size-sub-header: 14px;
        --font-size-footer: 12px;
        --font-size-input-label: 14px;
    }

    .login-header {
        font-size: 18px;
    }

    .login-sub-header {
        font-size: 14px;
    }

    .forgot-password-down {
        display: none;
    }

    .forgot-password-up {
        display: block;
    }
}

 /*X-Large devices (large desktops, 1200px and down)*/
@media screen and (max-width: 1200px) {
    .layout-main {
        flex-direction: column;
    }

    .right-container {
        display: none !important;
    }

    .identity-small-header {
        display: block;
    }

    .sign-in {
        width: 100%
    }

    .login-main {
        width: 70%;
        margin: 0;
    }

    .login-wrapper {
        justify-content: space-between;
        height: 100%;
    }
}

 /*XX-Large devices (larger desktops, 1400px and down)*/
@media screen and (max-width: 1400px) {
}

@media screen and (max-height: 620px) {
    body {
        overflow: scroll;
    }

    .right-container {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}
