/**
 * Trick to keep footer at the bottom of the window if not enough text in the main part
 * Thanks to Stephanie Eckles tutorial: https://moderncss.dev/keep-the-footer-at-the-bottom-flexbox-vs-grid/
 */

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex-grow: 1;
}

footer {
  margin-top: auto;
  font-size: .8rem;
  padding: 1rem 0;
}

/**
 * End of the trick
 */

.form-signin {
  max-width: 350px;
  padding: 1rem;
}

.form-label,
.col-form-label {
  font-weight: bold;
}

div.field_with_errors {
  display: inline;
}