@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

body {
    background: #fbfdff;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
    position: relative;
    font-family: 'Open Sans', sans-serif;
}

#pre-header {
    background: #e22121;
    height: 35px;
    line-height: 35px;
}

#pre-header a {
    color: #fff;
}

#main-header {
    /* top: 35px; */
    background: #fff;
    height: 75px;
    line-height: 75px;
    box-shadow: 0 -5px 12.5px #3333;
}

main {
    padding: 110px 0 100px;
    min-height: 100vh;
    display: flex;
}

.card-wrapper {
    margin: auto;
}

.card {
    background: white;
    border-radius: 2.5px;
    border-color: #cfcfcf80;
    box-shadow: 1px 1px 15px #cfcfcf66
}

.card>.far,
.card>.fas,
.card>.fa-regular,
.card>.fa-solid {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: .5rem;
    color: #3e3e3e;
}

.h1,
h1 {
    text-align: center;
    font-size: 1.5rem;
    color: #404040;
    margin-bottom: 1.6rem;
}

h1 span {
    display: block;
    font-size: 1rem;
    color: #5a5a5a;
}

label {
    display: block;
    color: #5a5a5a;
}

input {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

span.helptext,
ul {
    display: block;
    font-size: 12.2px;
    color: #6c757d;
}

ul.errorlist {
    display: block;
    font-size: 12.2px;
    padding: 12px 20px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    list-style: none;
    color: #721c24;
    background-color: #f8d7da;
}

.btn-primary {
    background-color: #a40909;
    border-color: #a40909;
    transition: all .3s ease;
    float: right;
    clear: both;
}

.btn-primary:hover {
    color: #fff;
    background-color: #6d0404;
}

a {
    color: #0078A0;
    transition: all .3s ease;
}

a:hover {
    color: #a40909;
    text-decoration: underline;
}

footer {
    background-color: #E80C0C;
    color: #fff;
    height: 60px;
    line-height: 60px;
    width: 100%;
    position: absolute;
    bottom: 0px;
}

footer a {
    color: #0078A0;
}

footer a:hover {
    color: #fff;
}