.billing__not-found-wrapper {
  display: flex;
  flex: 1;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}

.billing__not-found-wrapper > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.billing__not-found-wrapper h1,
.billing__not-found-wrapper h1 > span {
  font-size: 8rem;
  line-height: 8rem;
  font-weight: bolder;
}

.billing__not-found-wrapper span {
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.billing__not-found-wrapper > button {
  margin-top: 2rem;
  padding: 0.85rem 0;
  outline: none;
  border: none;
  width: clamp(100px, 100%, 300px);
  font-size: 1rem;
  font-weight: bolder;
  color: #fff;
  background: linear-gradient(to right, rgb(0, 162, 255), var(--oais-blue));
  border-radius: 6px;
  transition: all 200ms;
}

.billing__not-found-wrapper > button:hover {
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 360px) {
  .billing__not-found-wrapper h1,
  .billing__not-found-wrapper h1 > span {
    font-size: 6rem;
    line-height: 6rem;
  }
}
