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

header {
    flex: 0 0 auto;
}

main {
    padding: 0 20%;
    flex: 1;
}

footer {
    padding: 0 20%;
    flex: 0 0 auto;
    background-color: rgb(47,68,84);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 10em;
}

div.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

div.content form {
    padding: 1em 0em;
    margin: 3em 0em;
    border: 1px rgb(242, 242, 242) solid;
    min-width: 50%;
}

div.content h1 {
    color: rgb(27, 65, 118);
}

div.content form div.help-text {
    font-size: 0.85em;
    color: #6c757d;
    margin-top: 0.25em;
}

div.content form div.form-group {
    padding: 2em 0em;
}

ul.messages {
  list-style: none;
  padding: 0;
}

.warning, .success {
    background-size: 1em 1em;;
    background-repeat: no-repeat;
    background-position: 1.25em center;
    padding-left: 2.5em;
}

.warning {
    background-image: url("./icons/warning.aab9b4ac9691.svg");
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.success {
    background-image: url("./icons/success.c7d64d5cda46.svg");
    color: #155724;
    background-color: #d4edda;
    border-color:#c3e6cb;
}

.hidden {
  display: none;
}

.grey {
    background-color: rgb(242, 242, 242);
}
