@font-face {
    font-family: Roboto;
    src: url(Roboto-Regular.ttf);
    font-weight: normal;
}
@font-face {
    font-family: Roboto;
    src: url(Roboto-Bold.ttf);
    font-weight: bold;
}
* {
    box-sizing: border-box;
}
body, html {
    width: 100%;
    min-width: 320px;
    margin: 0;
    padding: 0;
    font-family: Roboto,arial,sans-serif;
}

.inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1280px;
}


.header {
    border-bottom: .063rem solid #aaa;
}
.header .inner {
    overflow: hidden;
    padding-top: .75rem;
    padding-bottom: .75rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row wrap;
}
.header .image {
    width: 7.25rem;
    margin: .6rem 10.9% .6rem 0;
}
.header .text {
    font-size: 1.5rem;
    margin: .75rem 0;
    font-weight: 600;
    color: #000;
}


.special-message {
    float: left;
    width: 100%;
    border: .063rem solid transparent;
    text-align: center;
    border-radius: .188rem;
    margin: 2rem 0;

    color: #aa2c2c;
    border-color: #aa2c2c;
    background: #f2e0e0;
}


.special-message .content {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 3rem 3rem 8rem;
    background: 1rem/2.5rem auto no-repeat;
    background-size: 4.375em auto;
    background-position: 1rem;

    background-image: url(fail.svg)
}

.special-message.success {
    color: #60aa2c;
    border-color: #60aa2c;
    background: #e7f2e0
}

.special-message.success .content {
    background-image: url(success.svg)
}

.special-message .title {
    display: block;
    font-size: 1.75em
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: .5rem 0;
    color: #fff;
    background: #000;
    overflow: hidden;
}
.footer .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row wrap;
    max-width: 900px
}
.footer .page-logo {
    display: flex;
    align-items: center;
    width: 6.438rem;
    margin: 1rem 2rem 1rem 0;
}
.page-logo .image {
    width: 100%;
}
.footer .text:not(a) {
    margin: 0rem 2rem 0rem 0;
    font-size: 0.67rem;
    text-align: center;
    color: #fff;
}
.footer a.text {
    color: #fff;
}
.footer .card-logos {
    margin: 1rem 0;
}
