.logincontainer {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    min-height: fit-content;
    background-color: whitesmoke;
}

.logobox1,
.logobox2 {
    width: 60%;
    height: 100%;
    display: flex;
    min-height: fit-content;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: whitesmoke;
}

.logobox1 {
    width: 40%;
    background-image: url(../../dist/img/login-background.jpg);
    /* background-color: white; */
    background-position: center center;
    background-size: cover;
}

.brandbox {
    height: 33vh;
    display: grid;
    justify-content: center;
    align-content: center;
}

.brandbox3 {
    display: grid;
    justify-content: center;
    align-content: center;
}

.loginlogoimg {
    width: 20vw;
    min-width: 260px;
}

.footer {
    margin-top: 2rem;
}

.subbrand .h1 {
    margin-top: 10vh;
    font-size: 5rem;
    color: #003356;
}

.card-header {
    color: #003356;
    text-decoration: none;
}

.logobox3,
.card-header strong,
.footer2 {
    display: none;
}

.login-box,
.register-box {
    width: 80%;
    max-width: 460px;
    min-width: 360px;
}

@media (max-width: 768px) {
    .logobox1 {
        display: none;
    }
    .logobox2 {
        width: 100%;
        min-height: fit-content;
    }
    .logobox3,
    .card-header strong,
    .footer2 {
        display: inline-block;
    }
    .loginlogoimg {
        margin: 2rem 0 1rem 0;
        width: 250px;
    }
}

@media (max-width: 576px) {
    .login-box,
    .register-box {
        width: 90%;
    }
    .logobox1,
    .logobox2,
    .logobox3 {
        height: fit-content;
    }
}