.full-height {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  min-height: 100vh;
}

.form-links {
  width: 100%;
  color: #ffcc00;
  text-decoration: underline;
  max-width: 700px;
  margin: 20px auto;
}

.form-links a {
  width: fit-content;
  display: block;
}

@media only screen and (width > 1024px) {
  .full-height {
    min-height: calc(100vh - 60px);
  }
}