html {
  font-size: 14px;
  height: 100%;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  background-color: hsl(50, 50%, 90%);
}

.page-container {
  padding-top: 30px;
  flex: 1;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
}

.footer {
  text-align: center;
  padding: 1rem 0;
  background-color: hsl(127, 20%, 90%);
  border-top: 1px solid hsl(127, 90%, 35%);
  box-sizing: border-box;
  bottom: 0px;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}
.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.content-container {
  padding: 10px;
  background-color: hsl(270, 20%, 90%);
  border: 0.5px solid hsl(127, 90%, 35%);
  border-radius: 1em;
}
