* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  margin: 3vh 8% 5vh 8%;
  width: 85%;
}
h1 {
  font-size: 8vw;
  text-align: center;
  padding: 2.5vh 10% 2.5vh 10%;
}
.password-tips p {
  margin-left: 20px;
  margin-right: 20px;
}
#nav-buttons {
  display: block;
}

/* Style arrow icons */
.toggle-text {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-block {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
}

.manUA .text-block.show {
  max-height: 2000px;
}
/* Show text blocks */
.text-block.show {
  max-height: 2000px;
}

#nav-buttons {
  display: block;
}
