@use '../components/mixins' as mixins;

.error {
  padding: 60px 0px;
  background: var(--tide-booking-bg);

  &__container {
    @include mixins.container-wide();
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  &__card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  &__icon {
    border-radius: 20%;
    display: flex;
    font-size: 24px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--tide-booking-invalid);

    @include media-lg {
      font-size: 50px;
    }

    svg {
      width: 40px;
      height: 40px;

      @include media-lg {
        width: 80px;
        height: 80px;
      }
    }
  }

  &__link {
    max-width: 150px;
    margin-top: 1rem;
  }
}
