html,
body {
    background: #fff;
    color: #212121;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 19px;
    margin: 0;
    min-height: 100%;
}

.main-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 90%;
    height: 100%;
}

.logo {
    background: url(./img/logo.svg) no-repeat center center;
    background-size: contain;
    width: 150px;
    height: 50px;
    text-indent: -999px;
    overflow: hidden;
}

.validation-message {
    margin-top: 3rem;
    text-align: center;
    display: none;
}

.validation-message__title {
    background: no-repeat top center;
    padding-top: 5.5rem;
    background-size: 50px;
    font-size: 1.5rem;
    line-height: 1.25em;
    font-weight: 500;
}

.validation-message--failure .validation-message__title {
    background-image: url(./img/failure.svg);
}

.validation-message--success .validation-message__title {
    background-image: url(./img/success.png);
}

.validation-message__content {
    color: #707070;
    margin-bottom: 8rem;
    line-height: 1.5em;
}

@media (max-width: 700px) {
    .validation-message__content .return {
        display: none;
    }
}

@media (min-width: 700px) {
    .validation-message__content .mobile-only {
        display: none;
    }
}

.validation-message__btn {
    appearance: none;
    background: #e23d54;
    border-radius: 8px;
    border: none;
    color: #fff;
    display: block;
    font-size: 1.07rem;
    height: 50px;
    line-height: 3.25em;
    text-decoration: none;
    margin: 0 auto;
    width: 240px;
}

@media (min-width: 700px) {
    .validation-message__btn {
        display: none;
    }
}

/*
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 2px solid #202020;
    padding-top: 1rem;
}

.footer-nav {
    display: flex;
    align-items: center;
}

.footer-nav__link {
    color: #2196f3;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-nav__link:first-child:after {
    content: "";
    display: inline-block;
    height: 19px;
    width: 1px;
    border-left: 1px solid #2196f3;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

.footer-social-nav {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.footer-social-nav span {
    font-size: 0.928rem;
    line-height: 1.25em;
}

.footer-social-nav__link {
    width: 15px;
    height: 15px;
    margin-left: 1.25rem;
    background: no-repeat center center;
    background-size: contain;
}

.footer-social-nav__link--instagram {
    background-image: url(./img/instagram.svg);
}

.footer-social-nav__link--twitter {
    background-image: url(./img/twitter.svg);
}

.footer-social-nav__link--facebook {
    background-image: url(./img/facebook.svg);
} */
