*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: "Exo 2", "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
  background-color: #fff;
  color: #504D41;
  font-size: 16px;
  line-height: 24px;
}
header {
  display: flex;
  align-items: center;
  padding-inline: 24px;
  height: 70px;
  border-top: 5px solid #FFB300;
  border-bottom: 1px solid #eee9dd;
}
h1 {
  margin: 48px 0 24px 0;
  color: #B60218;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
}
.button, a.button {
  position: relative;
  display: inline-flex;
  margin: 12px;
  padding: 10px 16px;
  overflow: none;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  line-height: inherit;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
  font-size: 16px;
  background-color: #026581;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .2s ease-in-out;
}
.button:not(.is-loading):hover,
.button:not(.is-loading):focus {
  background-color: #035066;
}
.button:disabled {
  opacity: .5;
}
.button.is-outlined {
  border-color: #026581;
  background-color: #fff;
  color: #026581;
}
.button.is-outlined:hover,
.button.is-outlined:focus {
  border-color: #035066;
  background-color: #f2f2f2;
  color: #035066;
}
.button.is-loading {
  color: transparent !important;
  pointer-events: none;
}
.button.is-loading::after {
  left: calc(50% - .5em);
  position: absolute;
  top: calc(50% - .5em);
  animation: spin .8s linear infinite;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 50%;
  border-right: 2px solid transparent;
  border-top: 2px solid transparent;
  content: "";
  display: block;
  height: 1em;
  width: 1em;
}
p {
  margin: 0;
}
.error {
  display: flex;
  align-items: flex-start;
  margin: auto;
  margin-top: 24px;
  padding: 12px;
  background-color: #F7E5E7;
  max-width: 720px;
}
.error svg {
  min-width: 21px;
  margin-right: 12px;
}
.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

