.sign-up-notification {
  background-color: $white-100;
  border-radius: 8px;
  position: relative;
  padding: 40px;
  z-index: 1;

  &:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 15px;
    bottom: 0;
    // background-image: url("~@appscode/design-system-images/icons/bb-large-icon.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 214px;
    z-index: -1;
  }

  &::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    right: 15px;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 214px;
    // background-image: url("~@appscode/design-system-images/icons/bb-large-icon-2.svg");
    z-index: -1;
  }

  .dismiss-button {
    position: absolute;
    line-height: 1;
    padding: 4px 7px;
    cursor: pointer;
    border-radius: 4px;
    right: 10px;
    top: 10px;
    background-color: lighten($color: $danger, $amount: 40);
    font-size: 1rem;
    transition: 0.3s ease-in-out;
    &:hover {
      background-color: $danger;
      color: $white-100;
      img {
        filter: brightness(100);
      }
    }
    img {
      transition: 0.3s ease-in-out;
      max-width: 8px;
    }
  }

  .notification-inner {
    h3 {
      font-size: 16px;
      line-height: 26px;
      font-weight: 600;
      color: $color-heading;
      margin-bottom: 10px;

      a {
        color: $color-heading;
        text-decoration: underline;
      }
    }

    p {
      color: $color-heading;
      font-size: 1rem;
      margin-bottom: 10px;
    }
  }
}

// Extra small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) {
  .sign-up-notification {
    padding: 40px 15px;

    &::before,
    &::after {
      display: none;
    }
  }
}

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) and (max-width: 767.98px) {
  .sign-up-notification {
    padding: 40px 15px;

    &::before,
    &::after {
      display: none;
    }
  }
}

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) and (max-width: 991.98px) {
}

// Large devices (desktops, 992px and up)
@media (min-width: 992px) and (max-width: 1199.98px) {
}

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {
}
