* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  max-width: 720px;
}
.box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 60px 60px 0 60px;
  max-width: 720px;
}
.box-title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-image {
  width: 100%;
}
.box-content {
  width: 100%;
  height: 637px;
  background: url("../img/box.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: 40px;
  padding: 350px 48px 0px;
}
.box-input {
  width: 100%;
  height: 85px;

  margin-top: 40px;
}
.input-code {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: url("../img/input.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: center;
  font-size: 32px;
  color: #000;
}
.box-button {
  width: 100%;
  height: 91px;
  background: url("../img/button-bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: button-animation 1s infinite;
}
.box-footer {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    position: absolute;
    margin-top: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 20%;
    text-align: center;
}
@keyframes button-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.wrapper-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1000;

  justify-content: center;
  align-items: center;
  display: none;
}
.wrapper-progress {
  width: 100%;
  max-width: 680px;
  background-color: #d4bed3;
  border: 4px solid #fff;

  border-radius: 16px 16px 16px 16px;
  padding: 16px;

  padding: 40px;
}
.progress-title {
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  line-height: 48px;

  text-align: center;
  margin-bottom: 4%;
}
.progress-item {
  margin-top: 4%;
}
.item-title {
  font-weight: bold;
  font-size: 28px;
  color: #fff;
  line-height: 21px;
}
.item-out {
  width: 100%;
  height: 32px;
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #fff;
  margin-top: 2%;
  padding: 2px;
}
.item-in {
  width: 0%;
  height: 100%;
  background: linear-gradient(180deg, #fbab2d 0%, #ef6f1b 100%);
  border-radius: 16px 16px 16px 16px;
}
.item-in-1 {
  animation: item-in-animation 1.5s forwards;
}
.item-in-2 {
  animation: item-in-animation 1.5s 0.6s forwards;
}
.item-in-3 {
  animation: item-in-animation 1.5s 1.2s forwards;
}
@keyframes item-in-animation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.result-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}
.result-content {
  width: 100%;
  max-width: 680px;
  background-color: #d4bed3;
  border: 4px solid #fff;
  background-size: 100% 100%;
  border-radius: 16px 16px 16px 16px;
  padding: 40px;
}
.result-title {
  font-weight: 600;
  font-size: 32px;
  color: #fff;
  line-height: 48px;
  text-align: center;
  margin-bottom: 4%;
}
.normal-text {
  font-size: 28px;
  color: #fff;
  line-height: 48px;
  text-align: center;
  margin-bottom: 4%;
}
.result-btn {
  width: 100%;
  height: 91px;

  margin-bottom: 4%;
  background: url("../img/button-bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;



  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: 600;
  color: #fff;

  text-align: center;
  animation: button-animation 1s infinite;
}
