@layer plugin {
  .oidc-authentication-line {
    color: var(--uui-colors-text-text-tertiary);

    font-family: var(--uui-font-family-font-family-body);
    font-size: var(--uui-font-size-text-sm);
    font-style: normal;
    font-weight: 500;
    line-height: var(--uui-line-height-text-sm);
    
    text-align: center;
    position: relative;
    text-transform: uppercase;
  }
  .oidc-authentication-line:before,
  .oidc-authentication-line:after {
    border-top: 2px solid var(--uui-colors-border-border-secondary);
    display: block;
    height: 1px;
    content: " ";
    width: 45%;
    position: absolute;
    left: 0;
    top: calc(var(--uui-line-height-text-sm)/2);
  }
  .oidc-authentication-line:after {
    right: 0;
    left: auto;
  }
  @media (max-width: 425px) {
    .oidc-authentication-line:before,
    .oidc-authentication-line:after {
      width: 42%;
    }
  }
}
