* {
    box-sizing: border-box;
}
.sr-only {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: var(--primary-font-family);
    font-size: var(--primary-font-size) !important;
    font-weight: var(--primary-font-weight);
    line-height: var(--primary-line-height);
}

.login {
    height:100%;
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 100px;

}

.display-none {
    display: none;
}

.login-box {
    background: rgba(255,255,255,0.95);
    max-width: 580px;
    width: 100%;
    padding: 50px 60px;
    margin: 0 auto;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.login .logo {
    display: block;
    width: 275px;
    height: auto;
    margin: 0 auto;
}
h1 .light {
    color: var(--color-primary);
    font-weight: 300;
}

.buttons {
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

.login-box-footer {
    min-height:100px;
    padding-bottom:5px;
}

.footer-form {
    font-size: 14px;
    line-height: 14px;
    font-weight: 300;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
}
.footer-form .sep {
    display: inline-block;
    color: var(--color-primary);
    line-height: 14px;
    font-size: 16px;
    padding: 0 4px;
}

.middot {
    color: var(--color-primary);
    margin-left:2px;
    margin-right:2px;
}

#forgot-password {
    padding-left:0px;
}

/* Apply variables values hardcoded to IE, since it doesn't support var() */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    body {
        font-size: 16px;
        font-weight: 400;
        line-height: 30px;
    }
    .background-style {
        background: #104C78;
        background: #104C78 url("../../../../public/images/login/hero-after.png") no-repeat center bottom / cover;
    }

    h1 { color: #104C78; }
    h1 .light { color: #61B9E6; }
    .footer-form .sep { color: #61B9E6;}
    .middot { color: #61B9E6; }
}

.eq-button, .eq-button:hover, a.button.button-transparent, a, a:hover {
    color: var(--color-dark);
}

.sso-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5em 0;
    font-weight: bold;
    color: #888;
}

.sso-separator::before,
.sso-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #bbb;
    margin: 0 1em;
}

.sso-login-buttons {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0;
    column-gap: 10px;
}

.sso-login-buttons .eq-button {
    flex: auto;
    min-width: 150px;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 600px) {
    .sso-login-buttons .eq-button {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        width: 100%;
        max-width: 100%;
    }
}
