@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 16px;
  background-image: url('./background-image.png');
  background-color: #0d0e12;
  font-family: sans-serif;
  font-weight: 400;
}

.container {
  padding-top: 40px;
  width: 597px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: red; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.heading img {
  width: 250px;
  height: 152px;
  align-self: center;
  /* object-fit: cover; */
}

.heading-text {
  color: #fece08;
  font-weight: 700;
  font-size: 64px;
}

.heading p {
  color: #fff;
  line-height: 150%;
}

.countdown-container {
  width: 304px;
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.countdown-container .item {
  /* width: 64px; */
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  background-color: #0d0e12;
}

.item-border {
  border-bottom: 0.2px solid #fece08;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.item-border p {
  font-size: 18px;
  color: #f6f7f9;
  line-height: 140%;
}

.item > p {
  font-size: 12px;
  color: #b5baca;
  line-height: 140%;
}
/* .countdown-container .item .item-border p:last-of-type {
  font-size: 12px;
  color: #b5baca;
  line-height: 140%;
} */
.email-container {
  margin-top: 80px;
  font-size: 17px;
  color: #fff;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.input-container {
  display: flex;
  gap: 24px;
  width: 532px;
  justify-content: center;
  text-align: center;
}

.input-container input {
  background-color: #0d0e12;
  border: 0.2px solid #f6f7f9;
  border-radius: 6px;
  padding: 16px 8px;
  flex-grow: 1;
  color: #b5baca;
}

.input-container input::placeholder {
  color: #b5baca;
  font-size: 14px;
}

.input-container button {
  background-color: #fece08;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  color: #35363a;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  width: 115.57px;
}

.copy {
  color: #e3e5eb;
  font-size: 14px;
  margin-top: 80px;
  margin-bottom: 60px;
}

@media screen and (max-width: 720px) {
  .container {
    width: 95%;
    margin-top: 100px;
  }

  .heading-text {
    font-size: 32px;
  }
  .email-container {
    justify-content: center;
    align-items: center;
  }

  .input-container {
    width: 95%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .input-container button {
    width: 100%;
  }
  .input-container input {
    width: 100%;
  }
}
