html, body, .content-wrapper {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.content-wrapper > main {
  display: flex;
  justify-content: center;
  align-items: center;
/*
  background-attachment: fixed;
  background-image: url("../img/joshua-bartell-6vvIBTvL90A-unsplash.jpg");
  background-position: right;
*/
  width: 100%;
  height: 100%;
}


.notifications {
  position: absolute;
  top: 0;
  right: 0;
}


main > form {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
  color: #6c757d;
  font-family: "Nunito", sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  max-width: 30rem;
  padding: 3rem 3rem 5rem;
  margin: .5rem 0 1rem 0;
}

@media (max-width: 991.98px) {
  main > form {
    max-width: 100%;
  }
}

main > form > object {
  height: 9rem;
  margin-bottom: 4rem;
}

main > form > button {
  background-color: #6F93F6;
  color: #fff;
  border: 1px solid #6F93F6;
  border-radius: .15rem;
  box-shadow: 0px 2px 6px 0px rgba(111, 147, 246, .5);
  padding: .45rem .9rem;
  margin-top: .5rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

main > form > input {
  border: 1px solid #dee2e6;
  border-radius: .25rem;
  padding: .45rem .9rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

main > form > label {
  font-weight: 600;
  margin-bottom: .5rem;
}

.error {
  color: rgb(250, 92, 124);
  font-style: italic;
  min-height: 1.5em;
  margin-bottom: .5rem;
}
