ul {
  list-style: none;
}

#username::placeholder {
  text-transform: none;
}

#container-senha-forte {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

#container-nova-senha:focus-within + #container-senha-forte {
  max-height: 200px;
}

.capslock-tooltip {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.2s, transform 0.2s;
}

.capslock-tooltip[aria-hidden="false"] {
  opacity: initial;
  transform: initial;
}