html {
  font-size: 16px;
}
p {
  padding: 0;
}
section {
  width: 100%;
}
button:disabled {
  opacity: 50%;
  cursor: not-allowed;
}
.uppercase {
  text-transform: uppercase;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1.275rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.text-md {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.75rem;
  line-height: 2.25rem;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-20 {
  margin-top: 20px;
}
.pc {
  display: none !important;
}
.underline {
  text-decoration: underline;
}
.mobile {
  display: block !important;
}
.container {
  margin-top: 80px;
  padding: 0;
}
#login-form-wrapper {
  padding: 20px 40px;
  text-align: center;
}
.input-container {
  width: 100%;
  text-align: left;
  max-width: 448px;
}
.input-container > input {
  width: 100%;
  border: 1px solid #d2d4db;
  padding: 12px 16px;
}
#vip-benefit {
  width: 100%;
  background-color: #a4caec66;
  padding: 20px 30px 40px 30px;
}
#vip-benefit__title {
  background-color: white;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
.vip-benefit__benefit {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 10px 0;
  text-align: center;
}
#best-sellers__content {
  background-color: #0d5b451a;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 15px;
}
#best-sellers__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.best-sellers__img-pair {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.best-sellers__img-pair a {
  width: 98%;
  margin: 1%;
}

.best-sellers__img-pair img {
  width: 100%;
}

#best-sellers__banner {
  display: none;
}

#vip-benefit__title-arrow {
  display: none;
}

#email-sent-message-section {
  padding: 20px 30px;
  text-align: center;
}

#resend-email-button {
  background-color: white;
  color: #0d5b45;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  width: fit-content;
}
#resend-email-button > span {
  background-color: white;
  color: #0d5b45;
  font-weight: 500;
  font-size: inherit;
}

@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .mobile {
    display: none !important;
  }
  html {
    font-size: 16px;
  }
  .container {
    width: 100%;
    margin: 120px auto 0;
  }
  #login-section {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 80px;
  }
  #login-form-wrapper,
  #email-sent-message-section {
    width: 50%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #vip-benefit {
    width: 45%;
  }
  #best-sellers__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  #best-sellers__content {
    padding: 10px;
  }
  .best-sellers__img-pair {
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
  }

  .best-sellers__img-pair a {
    width: 100%;
    margin: 1%;
    max-width: 300px;
  }

  .best-sellers__img-pair img {
    width: 100%;
  }
  #best-sellers__banner {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 481px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 0 0;
  }
  #vip-benefit__title-arrow {
    display: none;
  }
}

@media (min-width: 1440px) {
  .text-xs {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
  .text-sm {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .text-md {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
  .text-lg {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .text-xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .text-2xl {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
  .text-3xl {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .container {
    min-width: 1440px;
    margin: 170px auto 0;
  }
  #best-sellers {
    height: 481px;
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  #best-sellers__banner {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 0 0;
    width: 50%;
    height: 100%;
  }
  #best-sellers__content {
    width: 50%;
    padding: 10px;
  }
  #vip-benefit {
    max-width: 421px;
  }
  #vip-benefit__title {
    background-color: white;
    width: fit-content;
    text-align: center;
    padding: 10px 15px;
    margin: auto;
    position: relative;
  }
  #vip-benefit__title-arrow {
    display: block;
    position: absolute;
    left: -60px;
    bottom: 20px;
  }
  .vip-benefit__benefit {
    padding: 40px 0 10px 0;
  }
  .best-sellers__img-pair {
    padding: 10px;
    height: 100%;
  }
  .best-sellers__img-pair > img {
    width: 100%;
    height: 48%;
  }
  button {
    font-size: 1.125rem !important;
    line-height: 1.625rem !important;
  }
}
