/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

@import url('./modules/avista-auth-page.css');

.aa-login-or-separator {
  color: var(--bde-button-primary-text-color, var(--wp--preset--color--white));;
  font-family: var(--bde-font-family, Roboto, sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  padding: 0;
  display: block;
  text-align: center;
  position: relative;
  margin: 10px auto 20px;
  width: 100%;
  &::before {
    content: "or";
    background-color: #fff;
    font-size: 13px;
    color: #9b9b9b;
    display: inline-block;
    width: 62px;
    position: relative;
    z-index: 1;
  }
  &::after {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    margin-top: -0.5px;
    background-color: #d8d8d8;
  }
}