html {
  font-size: 14px;
  height: 100%;
}
body {
    min-height: 100%;
}
.container {
    width: 100%;
    min-height: 100vh;
    max-width: 100% !important;
    padding: 0px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

.login-page, .logged-out-page {
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    min-height: 100vh;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(178,202,238,1) 0%, rgba(212,222,238,1) 100%);
}

img {
    width: 500px;
}


@media screen and (max-width: 960px) {
    img {
        width: 100%;
    }

    .card {
        width: 90%;
        min-height: 50%;
    }
}

@media screen and (max-height: 100vh) and (min-width: 500px) and (max-width: 1024px) and (orientation: landscape) {
    img {
        width: 100%;
    }

    .image-container {
        width: 100%;
        padding: 10% 0px 10% 0px;
    }

    .card-body {
        display: flex;
        flex-direction: row;
        width: 90vw;
        max-height: 50%;
    }

    .form-component {
        width: 100%;
        margin: 10px 5% 10px 5%;
        align-self: center;
    }
}
