@import '../../../../../scss/settings/color-variables.scss';
@import '../auth.scss';

.auth-main {
  .auth-wrapper {
    .saprator {
      position: relative;
      display: flex;
      align-self: center;
      justify-content: center;

      &:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--bs-border-color);
        z-index: 1;
      }

      span {
        font-size: 0.875rem;
        padding: 8px 24px;
        background: $white;
        z-index: 5;
        text-transform: capitalize;
        color: $gray-800;
        font-weight: 500;
      }
    }
  }

  .auth-form {
    .admin-role {
      margin: 10px 0px;
      border-bottom: none;
      .nav-item {
        a {
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 500;
          border: 1px solid var(--bs-border-color);
          color: var(--bs-dark);

          &.active {
            font-weight: 700;
            background: var(--bs-primary);
            color: var(--bs-white);
          }
        }
      }
    }

    .social-button {
      color: var(--bs-secondary-color);

      &:hover {
        color: var(--bs-dark);
      }
    }
  }
}

form i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0px -12px 0px 0px;
  cursor: pointer;
  padding: 12px;
  font-size: 18px;
  position: absolute;
  top: 203px;
  right: 45px;
}
