h1,
p {
  margin-bottom: 0;
}

.hero {
  background-color: var(--whitesmoke-light);
  min-height: 90vh;
  width: 100vw;
}

.hero > * {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .tab {
  width: 536px;
  max-width: 90%;
  background: #ffffff;
  border-radius: 8px;
  padding: 30px 40px;
}

.hero .tab,
.hero form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .tab * {
  max-width: 456px;
}

.hero form,
.hero button {
  width: 100%;
}

.hero input {
  color: var(--light-slate-grey);
}

.hero h1 {
  font-size: 52px;
  line-height: 120%;
}

.hero .button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 15px;
  width: fit-content;
  margin-top: 15px;
}

.hero .form-control {
  padding: 18px 24px;
}

.hero .button-group button {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px 10px;
  font-weight: 700;
  background-color: var(--purple);
  color: white;
}

@media screen and (min-width: 1280px) {
  .hero > * {
    padding: 60px 0 30px 213px;
    align-items: flex-start;
  }

  .hero .button-group button {
    width: 220px;
  }
  .hero .button-group.grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero .button-group.grid-3 button {
    width: 142px;
  }
}

@media screen and (min-width: 768px) {
  .hero {
    background-image: url(../media/bg/homepage/bidstats-home-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .hero.authorize-plan-free {
    background-image: url(../media/bg/homepage/authorize-email-bg.webp);
  }

  .hero.authorize-sent {
    background-image: url(../media/bg/homepage/email-sent-bg.webp);
  }

  .hero.tbc {
    background-image: url(../media/bg/homepage/tbc-bg.webp);
  }
}
