.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(../images/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;
    }
}

.g-sign-in-button *,
.g-sign-in-button *:before,
.g-sign-in-button *:after {
    box-sizing: border-box;
}

.g-sign-in-button {
    margin: 0 auto;
    display: flex;
    width: 240px;
    height: 50px;
    background-color: #4285f4;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .25);
    transition: background-color .218s, border-color .218s, box-shadow .218s;
}

.g-sign-in-button:hover {
    cursor: pointer;
    -webkit-box-shadow: 0 0 3px 3px rgba(66, 133, 244, .3);
    box-shadow: 0 0 3px 3px rgba(66, 133, 244, .3);
    text-decoration: none!important;
}

.g-sign-in-button:active {
    background-color: #3367D6;
    transition: background-color 0.2s;
}

.g-sign-in-button .content-wrapper {
    height: 100%;
    width: 100%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.g-sign-in-button img {
    width: 18px;
    height: 18px;
}

.g-sign-in-button .logo-wrapper {
    padding: 15px;
    background: #fff;
    width: 48px;
    height: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-sign-in-button .text-container {
    font-family: Roboto, arial, sans-serif;
    font-weight: 500;
    letter-spacing: .21px;
    font-size: 16px;
    line-height: 48px;
    vertical-align: top;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    text-align: center;
    color: white;
}