@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");

* {
    text-rendering: optimizeLegibility;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

body {
    background-image: url("background_pattern.png");
    background-repeat: repeat;
    background-color: #000000;
    border-radius: 16px;
}

@keyframes divLoginAnimation {
    0% {
        height: 21.875rem;
    }

    100% {
        height: 27.375rem;
    }
}

@keyframes divLoginReverseAnimation {
    0% {
        height: 27.375rem;
    }

    100% {
        height: 21.875rem;
    }
}

@keyframes opacityAnimation {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes opacityReverseAnimation {
    0% {
        opacity: 100%;
    }

    100% {
        opacity: 0%;
    }
}

@keyframes widthReverseAnimation {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

@keyframes widthAnimation {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

div#banner {
    background: rgb(223, 111, 40);
    background: -moz-linear-gradient( 90deg, rgba(223, 111, 40, 1) 0%, rgba(252, 176, 69, 1) 100% );
    background: -webkit-linear-gradient( 90deg, rgba(223, 111, 40, 1) 0%, rgba(252, 176, 69, 1) 100% );
    background: linear-gradient( 90deg, rgba(223, 111, 40, 1) 0%, rgba(252, 176, 69, 1) 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#df6f28",endColorstr="#fcb045",GradientType=1);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

main {
    width: 75%;
}

footer {
    background-color: #1e1e1e;
    border-top-left-radius: 15px;
}

#modalMSAL {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

@media (orientation : portrait) {
    html, body, button, input, .invalid-tooltip {
        font-size: 87.5% !important;
    }

    div#banner {
        display: none;
    }

    main {
        width: 100% !important;
    }

    div#loginContainer {
        margin: 0 1rem;
    }

    @keyframes divLoginAnimation {
        0% {
            height: 14.6621428571rem;
        }

        100% {
            height: 25.8457142857rem;
        }
    }

    @keyframes divLoginReverseAnimation {
        0% {
            height: 25.8457142857rem;
        }

        100% {
            height: 14.6621428571rem;
        }
    }
}
