* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  input {
    border: none;
    outline: none;
  }
  body {
    font-family: "Rubik", sans-serif;
    background: url(https://img.tunefab.com/uploads/page/payment-succeeded/bg.png) no-repeat top center;
  }
  a {
    text-decoration: none;
    color: #000;
  }
  .success-container {
    width: 630px;
    margin: 0 auto;
    padding: 40px 0 50px;
  }
  .success-title {
    color: #5c72ff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }
  .success-img {
    margin-bottom: 70px;
  }
  .order-details {
    border-radius: 10px;
    border: 1px solid #e4e4e4;
    background: #fff;
  }
  .order-details-con {
    padding: 0 13px;
  }
  .title {
    color: #000;
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid #ebebeb;
  }
  .order-email,
  .order-product {
    color: #323232;
    margin: 20px 0;
    padding-left: 4px;
  }
  .order-details-bottom {
    border-radius: 0px 0px 10px 10px;
    background: #f6f6f6;
    padding: 13px 0;
    color: #6e6e6e;
    font-size: 12px;
    padding-left: 18px;
  }
  .order-details-button {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    width: max-content;
    border-radius: 4px;
    background: #ff9b43;
    color: #fff;
    font-size: 14px;
    margin: 20px auto;
    transition: all 0.3s ease;
  }
  .order-details-button:hover {
    background: #ff851b;
  }
  .loading-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 99;
  }
  .loading-img {
    animation: loading 1.5s linear infinite;
    width: 64px;
  }
  @keyframes loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .loading-img {
    width: 100px;
  }
  @media (max-width: 768px) {
    .success-container {
      width: 100%;
      padding: 34px 16px;
      overflow: hidden;
    }
    .success-img {
      width: 160%;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      margin-bottom: 80px;
    }
    .success-title {
      font-size: 28px;
    }
    .order-email,
    .order-product {
      font-size: 14px;
      margin: 10px 0;
      line-height: 1.8;
    }
    .order-details-con {
      padding: 0 8px;
    }
    .order-details-bottom {
      padding: 3px 0;
      padding-left: 10px;
      font-size: 12px;
      line-height: 1.6;
    }
  }
  