.formText {
  margin-bottom: 2rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

.formText.visible {
  max-height: 2000px;
  opacity: 1;
}

.seeMoreButton {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.seeMoreButton svg {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  fill: #000;
}

.seeMoreButton.open svg { 
  transform: rotate(90deg);
}

.seemoreText {
  position: relative;
  display: inline-block;
  margin: 0;
}

.seemoreText::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: black;
  transition: width 0.3s ease;
}

.seeMoreButton:hover .seemoreText::after {
  width: 100%;
}

#SeeMoreText p.seemoreText {
    margin: 0;
}

#moreInfoText {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  margin-top: 1rem;
}

#moreInfoText.open {
  max-height: 1000px;
  opacity: 1;
}

.formText {
  margin-bottom: 2rem;
}

.formText p {
  margin-bottom: 1rem;
  font-family: Avus;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
 
.getnotified-form__inputs-wrapper h5{
  display: none;        
}

.formText a{
  text-decoration: underline;
}

.getnotified-form__checkbox-label {
    display: none !important;
}

[lang="en_JP"] .getnotified-form__inputs-wrapper .lw-container.lw-pb-600:nth-last-child(1),
[lang="en_JP"] .getnotified-form__inputs-wrapper .lw-container.lw-pb-600:nth-last-child(2),
[lang="en_JP"] .getnotified-form__inputs-wrapper .lw-container.lw-pb-600:nth-last-child(3) {
    display: none;
}

[lang="ja"] .getnotified-form__inputs-wrapper .lw-container.lw-pb-600:nth-last-child(1),
[lang="ja"] .getnotified-form__inputs-wrapper .lw-container.lw-pb-600:nth-last-child(2),
[lang="ja"] .getnotified-form__inputs-wrapper .lw-container.lw-pb-600:nth-last-child(3) {
    display: none;
}