body {
    margin: 0;
}

header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 2px rgb(0 0 0 / 10%);

}

header img {
    width: 135px;
    vertical-align: center;
}

section#body {
    min-height: calc(100vh - 300px);;
}

footer {
    background: #00121a;
    color: #fff;
    padding: 4rem 0;
    height: 220px;
}

.footer {
    display: grid;
    grid-gap: 10px;

    align-items: center;
    grid-template-areas: "info image links";
    justify-items: start;
}


@media only screen and (max-width: 991px) {
    footer {
        height: unset;
    }

    .footer {
        text-align: center;
        grid-template-areas:
                "image"
                "info"
                "links";


    }

    .cell {
        display: block;
        width: 100%;
    }
}

.cell:nth-child(1) {
    grid-area: info;
}

.cell:nth-child(2) {
    justify-self: center;
    grid-area: image;
}

.cell:nth-child(3) {
    justify-self: end;
    grid-area: links;
}


.cell h4 {
    font-size: 16px;
    padding-bottom: 20px;
    position: relative;
}

.cell h4::after {
    position: absolute;
    left: 0;
    bottom: 8px;
    content: "";
    height: 2px;
    width: 30px;
    background: #fff;
}

@media only screen and (max-width: 991px) {
    .cell h4::after {
        left: calc(50% - 15px);
    }
}

.footer-links {
    margin-top: 2rem;
    line-height: 2;
}

.footer-links a {
    color: white;
}

#body {
    text-align: center;
    margin-bottom: 4rem;
}

#body h1 {
    padding-bottom: 3rem;
}

input[type=text] {
    background: #00121a;
    border: 1.5px solid hsla(0, 0%, 100%, .8);
    color: #fff;
    padding: 5px 20px;
    height: 32px;
    font-size: 14px;
    border-radius: 20px;
    width: 100%;

}

input[type=text]::placeholder {
    color: white;
}

input[type=checkbox] {
    cursor: pointer;
}

input[type=submit] {
    background: #00121a;
    color: #fff;
    border-radius: 20px;
    text-transform: uppercase;
    opacity: .78;
    letter-spacing: 1px;
    box-shadow: 0 0 3px rgb(0 0 0 / 60%);
    width: 100%;
    padding: 6px 12px;
    border-color: transparent;
}

input[type=submit]:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.form-col {
    max-width: 300px;
    margin: 0 auto;
}

.form-col p {
    text-align: left;
}

.form-col label {
    font-weight: unset;
    padding-left: 22px;
    vertical-align: middle;
    padding-top: 1px;
    padding-bottom: 1px;
    cursor: pointer;
}

.checkboxes {
    text-align: left;
    display: inline-block;
    cursor: pointer;
}

.errorlist {
    color: red;
    text-align: left;
}


.errorlist li {
    list-style: none;
}
