.tc-body main {
  margin-top: 40%;
}

#confetti {
  position: absolute;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 440px;
  width: 100%;
  padding: 12px 24px;
  margin: 0 auto;
}

.title-container {
  margin-top: 39px;
  padding: 0 12px;
}

.title-container h1 {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Futura PT", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  background: linear-gradient(
    84deg,
    #f7c360 -0.02%,
    #fcf097 49.98%,
    #f7c360 99.98%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.title-container h1::before {
  content: "";
  display: block;
  background-image: url("../img/icons/hello.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 44px;
  height: 44px;
}

.tc-body .tc-title {
  font-size: 42px;
}

.tc-title::before {
  background-image: url("../img/icons/confetti.svg") !important;
  width: 53px;
  height: 53px;
}

.status-container {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding: 16px;
}

.status-container .container {
  gap: 10px;
}

.icon-status {
  width: 28px;
  height: 28px;
  animation: popIn 0.5s ease forwards;
}

@keyframes popIn {
  0% {
    transform: scale(0.3) rotate(-10deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.5) rotate(5deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.icon-status.pop {
  animation: popIn 0.5s ease forwards;
}

.icon-status.shake {
  animation: shakeX 0.6s ease;
}

.isHide {
  display: none;
}

.status {
  font-size: 22px;
  color: #b3b3b3;
}

.tc-status {
  font-size: 32px;
}

/* .error {
  color: #cc2e32;
}

.success {
  color: #ffffff;
} */

.input-group {
  padding: 0 12px;
}

.input-group .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 16px;
  background-color: #030022;
  border-radius: 8px;
}

.input-group__inner {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  width: 100%;
}

input {
  width: 100%;
  height: 44px;
  padding: 10px 6px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  background-color: #0e0945;
  color: #b3b3b3;
  box-sizing: border-box;
  outline: none;
  transition: all 0.3s ease;
}

button {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  background-color: #d1b684;
  color: #112046;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-top: 12px;
}

button::before {
  content: "";
  display: block;
  background-image: url("../img/icons/submitBtn.svg");
  width: 24px;
  height: 24px;
}

button:hover {
  background: linear-gradient(180deg, #fcf5b8 0%, #d1b684 50.48%, #a38047 100%);
  box-shadow: 0 0 20px 0 #b5955f, 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.error-message {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #e74c3c;
  display: none;
  white-space: nowrap;
  text-align: right;
  margin-top: 2px;
}

input::placeholder {
  color: #545454;
}

input.error {
  border-color: #e74c3c;
}

label {
  font-size: 12px;
  text-align: left;
  color: #545454;
  display: block;
  margin: 0 0 6px 6px;
}

.tcLink {
  color: #b3b3b3;
  font-size: 20px;
}

.tcLink:hover {
  color: #d59c09;
}

.conditions {
  max-width: 50%;
  margin-top: 12px;
}

.podium-items {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
  z-index: 100;
  width: 100%;
}

.podium {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 430px;
}

.sticker__wrap {
  position: absolute;
  animation: headShake 2s ease-in-out infinite;
}

.sticker {
  width: auto;
  height: 250px;
  object-fit: contain;
}

@keyframes headShake {
  0%,
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
  25% {
    transform: translateX(-50%) rotate(-6deg);
  }
  75% {
    transform: translateX(-50%) rotate(6deg);
  }
}

.tear {
  position: absolute;
  left: 42%;
  bottom: 35%;
  z-index: 3;
  width: 14px;
  height: 22px;
  background: rgba(0, 180, 255, 0.9);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(15deg);
  will-change: opacity, transform;
  animation: tearDrop 3s ease-in-out infinite;
}

@keyframes tearDrop {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.6);
  }
  10% {
    opacity: 1;
    transform: translateY(5px) scale(1);
  }
  70% {
    opacity: 1;
    transform: translateY(50px) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translateY(70px) scale(0.8);
  }
}

.share {
  display: flex;
  align-items: center;
}

.share__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tc-podium {
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
}

.onTop {
  font-size: 30px;
}
