body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-family: "Inter";
  background: url("https://d2refp30laz1gf.cloudfront.net/bestpay/asset/bp_bg.png");
  background-size: cover;
  border: 1px solid transparent;
  overflow: hidden;
}

.header {
  margin: 20px 40px;
}
.main-page {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin: 20px 40px;
}
.content-wrapper {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  margin-top: 5%;
}

.left-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 420px;
  margin-left: 24px;
}
.left-title {
  color: #202f4b;
  font-size: 42px;
  font-weight: 700;
}
.left-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #7e8f9f;
}
.left-soon {
  margin-top: 18px;
  border: 1px solid #cbd6e1;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: #00b3f2;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}
.right-wrapper {
  display: flex;
  justify-content: center;
  flex-basis: 50%;
  margin: 24px 0;
}
.bp-img {
  width: 200px;
  height: 253px;
}

@media only screen and (max-width: 767px) {
  .main-page {
    height: 130%;
    margin-top: 10%;
  }
  .right-wrapper {
    display: none;
  }
}
