/* Smartweb's Must Have - SSO: tlačidlo „Prihlásiť sa cez Smartweb“ pod prihlasovacím formulárom.
   Hook login_form vypisuje blok pred riadkom Zapamätať; formulár je preto flex stĺpec a blok má order na koniec. */
body.login #loginform {
    display: flex;
    flex-direction: column;
}

.sw-sso {
    order: 100;
    margin: 20px 0 4px;
    clear: both;
}

.sw-sso__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6b7280;
}

.sw-sso__divider::before,
.sw-sso__divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.sw-sso__button,
.sw-sso__button:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    box-sizing: border-box;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: #111111;
    background: #ffffff;
    border: 1px solid #111111;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.sw-sso__button:hover,
.sw-sso__button:focus {
    color: #ffffff;
    background: #111111;
    text-decoration: none;
    outline: none;
}

.sw-sso__button:focus-visible {
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .25);
}
