.user-register-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  padding: 40px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 99;
  @media (max-width: 767px) {
    padding: 15px 20px;
  }

  &.sl-popup-open {
    display: flex;
  }

  .user-register-popup-content {
    display: flex;
    flex-direction: column;
    background: #000;
    border-radius: 10px;

    .popup-header {
      padding: 20px 40px;
      border-bottom: 1px solid rgba(250, 250, 250, 0.2);
      display: flex;
      position: relative;

      @media (max-width: 767px) {
        padding: 15px 20px;
      }

      .popup-close-button {
        position: absolute;
        right: 20px;
        top: 5px;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
      }

      h2 {
        color: #fff;
        font-size: 18px;
        margin: 0;
        text-align: center;
      }
    }

    .popup-body {
      padding: 20px 40px;
      border-bottom: 1px solid rgba(250, 250, 250, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;

      @media (max-width: 767px) {
        padding: 15px 20px;
        max-height: 70vh;
        overflow: auto;
      }
      .advantages {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        .advantage {
          display: flex;
          gap: 10px;
          align-items: center;
          img {
            width: 20px;
            height: 20px;
            min-width: 20px;
          }
          .text {
            display: flex;
            flex-direction: column;
            * {
              font-size: 14px;
              hyphens: auto;
            }
            strong {
              background-image: linear-gradient(
                90deg,
                #7ccbdc 0%,
                rgb(255, 255, 255) 100%
              );
              background-clip: text;
              color: transparent;
            }
          }
        }
      }
      .elementor-login {
        .elementor-form-fields-wrapper {
          justify-content: space-between;
          gap: 20px;
          .elementor-field-type-text {
            width: calc(50% - 10px);
            @media (max-width: 767px) {
              width: 100%;
            }
          }
        }
        input {
          font-size: 16px;
          color: #000;
        }
      }
    }

    .popup-footer {
      padding: 20px 40px;

      @media (max-width: 767px) {
        padding: 15px 20px;
      }
      a {
        text-decoration: underline;
      }
    }
  }
}
