.page-register {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
}

.page-register form input[type=submit] {
  margin: 16px 0;
}

.page-register .register-error {
  color: white;
} 

.page-register .register-error.shown {
  color: var(--color-error);
}

.page-register a {
  text-decoration: underline;
}

.page-register h1 {
  margin-bottom: 32px;
}