.warning-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  padding: 16px;
  background: #f5f7fa;
  box-sizing: border-box;
}

.warning-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 0px 32px rgba(202, 202, 202, 0.4);

  padding: 48px 50px;
  max-width: 514px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  box-sizing: border-box;
}

.warning-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.warning-main-text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: #212421;
  margin: 0;
}

.warning-sub-text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #212421;
  margin: 0;
  max-width: 375px;
}

.warning-btn {
  box-sizing: border-box;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  padding: 14px 24px;

  border: 1px solid #045B4A;
  border-radius: 8px;

  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;

  color: #045B4A !important;
  text-decoration: none;
  cursor: pointer;

  white-space: nowrap;
  transition: 0.2s ease;
}

.warning-warning-icon {
  width: 80px;
  height: 80px;
}

@media screen and (max-width: 758px) {
  .warning-box {
    padding: 32px;
    gap: 24px;
  }

  .warning-maintext {
    font-size: 20px;
  }

  .warning-subtext {
    font-size: 14px;
    white-space: nowrap;
  }

  .warning-warning-icon {
    width: 64px;
    height: 64px;
  }
}
