* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  align-content: center;
}

.full-page {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  height: 100%;
  background-color: lightgray;
  border: 1px solid black;
  margin: 0 auto;
}
.full-page > * {
  padding: 1rem;
}
.full-page .content {
  flex-grow: 1;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.full-page .content p {
  margin-bottom: 0.75rem;
}
.full-page .header, .full-page .footer {
  gap: 1rem;
  height: 5rem;
  align-content: center;
  text-align: center;
}

.login-widget {
  text-align: center;
}

/*# sourceMappingURL=main.css.map */