@import '../../variables.scss';

.social_login_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3vh;
  .or_divider {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 2vh 0;
    color: $black;
    font-weight: 600;
    font-size: 16px;
    text-align: center;

    &::before {
      position: absolute;
      left: -110px;
      // background: blue;
      background: linear-gradient(
        200deg,
        #a7a7a7 -4.98%,
        rgba(255, 255, 255, 0) 72.67%
      );
      width: 100px;
      height: 2px;
      // left: -120%;
      content: '';
    }
    &::after {
      position: absolute;
      right: -110px;
      // background: blue;
      background: linear-gradient(
        90deg,
        #a7a7a7 -4.98%,
        rgba(255, 255, 255, 0) 72.67%
      );
      width: 100px;
      height: 2px;
      // right: -120%;
      content: '';
    }
  }
  .buttons_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    .login_button {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      transition: all 0.3s;
      cursor: pointer;
      outline: 0;
      border: 0;
      border-radius: 85px;
      background: #ececec;
      // width: 50%;
      width: 160px;
      height: 50px;
      color: #fff;
      font-size: 22px;

      &.googlebtn {
        border: 1px solid black;
        background: none;
        color: $black;
        font-weight: 500;
        font-size: 18px;
        font-family: 'CreatoDisplay';
      }
      &.fbbtn {
        border: 1px solid black;
        background: none;
        color: $black;
        font-weight: 500;
        font-size: 18px;
        font-family: 'CreatoDisplay';
      }
      &:hover {
        transform: scale(0.95);
        color: $redButton;
        font-weight: 700;
      }

      @media (max-width: 425px) {
        width: 140px;
        // width: 100%;
      }
    }
  }
}
