:root {
    --black: #000000;
    --white: #ffffff;
    --blue: #00A8D8;
    --grey: #979797;
}

body {
    font-family: 'MINI Serif', 'Times New Roman', sans-serif;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.main-container {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

footer {
    background: var(--black);
    padding: 20px 0;
    color: var(--black);
    margin-top: 20px;
}

h1, .h1 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 1.8rem;
}


.form-group {
    margin-bottom: 20px;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.font-weight-light{
    font-weight: 300;
}

.max-width-400 {
    max-width: 400px;
}

.max-width-300 {
    max-width: 300px;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.d-block {
    display: block !important;
}

.w-100 {
    width: 100%;
}

.btn-primary {
    font-family: "MINI Sans Serif", sans-serif;
    text-transform: uppercase;
    outline: none;
    display: inline-block;
    font-weight: 400;
    color: var(--white);
    background-color: var(--blue);
    border: none;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 8px 15px;
    font-size: 1.1rem;
    line-height: 1.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary.focus {
        color: #fff;
        background-color: #1E70B7;
        border: none;
        outline: none;
        cursor: pointer;
    }


.link-darker-grey {
    color: #333333;
    text-decoration: none;
    border: none;
    outline: none;
    padding: 0;
    transition: ease-out, 250ms;
}

@media (prefers-reduced-motion: reduce) {
    .link-darker-grey {
        transition: none;
    }
}

.link-darker-grey:hover {
    color: #4d4d4d;
    text-decoration: none;
}

.link-darker-grey:focus, .link-darker-grey:active {
    color: #333333;
    text-decoration: none;
}

.text-danger {
    color: #b00020 !important;
}

a.text-danger:hover, a.text-danger:focus {
    color: #640012 !important;
}

.validation-summary-errors ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.container-centered{
    max-width: 400px;
}