.container {
    display: grid;
    grid-template-areas:
        "head head head"
        "left content right"
        "foot foot foot";
    grid-template-columns: 1fr minmax(360px, 418px) 1fr;
    grid-template-rows: 1fr auto 1fr;
    width: 100vw;
    min-height: 100vh;
}

.card {
    background-color: white;
    width: 100%;
    height: 100%;
    grid-area: content;
    display: grid;
    grid-auto-flow: row;
}

.card-content {
    display: grid;
    grid-auto-flow: row;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    justify-items: center;
}

.card-content img {
    display: block;
    width: 80%;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.card-text {
    display: block;
}

.card-text>.link-text {
    padding-top: 15px;
}

.link-text {
    line-height: 21px;
    font-weight: 500;
    font-size: 15px;
    color: #0A6FDB;
}

.link-text>a {
    text-decoration: none;
}

.card-form {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.card-form form {
    display: grid;
    grid-auto-flow: row;
    row-gap: 30px;
}

.card-form input[type=text] {
    width: 100%;
    padding: 10px;
    height: 40px;
}

.card-form input[type=submit] {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    height: 42px;
    color: #FFFFFF;
    background: #0A6FDB;
    border-radius: 5px;
    padding-top: 11px;
    padding-bottom: 11px;
    border: none;
}

.card-form input[type=submit]:hover {
    background: #145FB0;
}

.card-footer {
    width: 100%;
    background: #F5F5F5;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 20px;
}

.card-footer img {
    display: block;
    width: 80%;
    height: 44px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.spacer-1 {
    width: 100%;
    height: 30px;
}

.spacer-2 {
    width: 100%;
    height: 80px;
}