html {
  background-color: #ffffff;
  height: 100%;
  margin: 0;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  height: 100%;
}

header {
  background-color: #000;
  color: #fff;
  margin: 0;
  overflow: hidden;
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

h1 {
  font-size: large;
}

h2 {
  font-size:xx-large;
}

main {
  margin: 1rem 0 0 8vw;
  color: #161616;
  padding: 2rem rem 2rem 2rem;
  flex: 1;
  width: 30%;
  min-width: 20rem;
}

footer {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  color: #474747;
  font-size: 12px;
}

footer p {
  margin-top: 1rem;
}

.header-right {
  position: absolute;
  right: 0;
  margin-right: 2rem;
}

.link {
  color: #000000;
  text-decoration: underline;
  background-color: #ffffff;
  border: none;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif !important;
  font-size: 16px;
}

.link:hover {
  color: #474747;
}

.button {
  text-align: center;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  padding: 5px 20px 5px 20px;
}

.button.round {
  border-radius: 40px;
}

.button.return {
  border: 2px solid #000;
  margin-top: 1rem;
}

.button.return img {
  height: 1.5rem;
}

.button.lilac {
  /* background-color: #aa8ab7; */
  background-color: #d1c0d8;
  color: black;
  border: 2px solid #000000;
}

.button.lilac:hover {
  background-color: #aa8ab7;
}

.button:disabled {
  background-color: #c6c6c6;
}

.button.dark {
  background-color: #161616;
  color: #ffffff;
}

.button.dark:hover {
  color: #f4f4f4;
  background-color: #474747;
}

.button.light {
  background-color: #ffffff;
  color: #161616;
}

.button.light:hover {
  color: #474747;
  background-color: #f4f4f4;
}

.button.header {
  background-color: #000000;
  color: #ffffff;
  border: none;
  text-decoration: none;
  padding: 1rem;
}

.button.header:hover {
  color: #f4f4f4;
  background-color: #474747;
}

.button-set {
  margin-top: 2rem;
}

.button-set button {
  margin-right: 1rem;
}

.pad {
  padding-right: 5px;
  padding-left: 5px;
}

.helper-text {
  font-size: 12px;
  margin-top: 0;
}

.logo {
  height: 47px;
}

.text-input {
  border: none;
  border-block-end: 1px solid #000000;
  height: 2.5rem;
  width: 100%;
  background-color: #f4f4f4;
  padding-left: 1rem;
  margin: 0.5rem 0 1rem 0;
}

label {
  display: inline-block;
  color: #525252;
  font-size: small;
}

.hidden {
  display: none !important;
}

.hidden > * {
  display: none !important;
}

.header-row {
  background-color: #e0e0e0;
  font-weight: bold;
}

.error-box {
  margin-top: 1rem;
}