.login-container {
  position: relative;
  width: 230px;
}
.login-form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 10px;
}
.login-button {
  margin-left: 140px;
  cursor: pointer;
  background: #2424e5;
  color: white;
  border: 0;
  width: 90px;
  height: 28px;
}
.login-button:hover {
  background: #8524e5;
}
.login-panel {
  position: absolute;
  width: 230px;
  top: -30px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border: 1px solid black;
  background-color: white;
  opacity: 1;
  padding: 10px;
  height: fit-content;
}
.login-panel form {
  margin: auto;
}
.login-panel form button {
  margin-right: 0;
}
.advice {
  font-size: smaller;
  margin-bottom: 0;
}
.advice a {
  text-decoration: none;
}
.advice a:hover {
  text-decoration: underline;
}
.help {
  font-size: smaller;
  margin-bottom: 0;
}
input.error {
  box-shadow: 3px 2px red;
}
.code {
  font-weight: bold;
  font-family: sans-serif;
  font-size: larger;
}
