.login-container {
    height: 100vh;
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
}

.login-container .login-forms {
    height: 100%;
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
}

.login-container .login-forms .login-forms-content {
    min-height: 26.4375rem;
    width: 22.5rem;
}

.login-container .login-forms .login-forms-content > a > img {
    margin-bottom: 5rem;
}

.login-container .login-cover-image {
    display: grid;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url("./sub/images/login-cover-img.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    height: 100%;
    width: 100%;
}

.login-container .login-cover-image::before {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.5;
}

.login-container .login-footer {
    position: absolute;
    padding: 0 2rem 2rem;
    bottom: 0;
    left: 0;
}

.login-container .login-footer div {
    display: flex;
    align-items: flex-end;
    align-self: stretch;
}

.login-header {
    margin-bottom: 0.75rem;
}

.login-sub-text {
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.cta-button-login-type {
    margin-bottom: 1.5rem;
}

.email-login-section .go-back {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

.email-login-section .form-group,
.reset-password-section .form-group,
.update-password-section .form-group {
    margin: 1.5rem auto;
}

.email-login-section input:not([type="submit"]),
.reset-password-section input:not([type="submit"]),
.update-password-section input:not([type="submit"]) {
    width: calc(100% - 1.75rem);
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid var(--gray-300);
    background: var(--oa-base-white);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.email-login-section .forgot-password {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.email-login-section input[type="submit"],
.reset-password-section input[type="submit"],
.update-password-section input[type="submit"] {
    width: calc(100% - 3.5rem);
}

/* Desktop */
@media only screen and (max-width: 1200px) {}
@media only screen and (max-width: 992px) {}


/* Mobile */
@media only screen and (max-width: 768px) {
    .login-container {
        background-image: url("./sub/images/oa-background-pattern.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: inherit;
    }

    .login-container .login-cover-image,
     .login-container .login-footer {
        display: none;
    }


    .login-container .login-forms .login-forms-content > a {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 576px) {

    .login-container .login-forms .login-forms-content {
        min-height: 26.4375rem;
        width: 90%;
        margin: auto;
    }
}
