.contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.contact__card {
    background: #efefef;
    max-width: 40rem;
    margin: 0 auto;
    border-radius: 3rem;
    padding: 4rem 8rem ;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.5);
}
.contact__title {
    padding: 0 !important;
    margin-bottom: 1rem;
}
.contact__text {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.25rem;
}
.contact input {
    width: 100%;
}

.contact textarea {
    height: 8rem;
}

.contact__error {
    font-style: italic;
    list-style-type:none;
    color: #800;
}

.contact__field {
    margin-bottom: 0.5rem;
}

.contact__label {
    display: block;
}

.contact__label::after {
    content: ":";
}

.contact__submit {
    margin-top: 1rem;
    padding: 0.5rem 2rem;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    border-style: none;
    border: solid 1px #efefef;
    color: #efefef;
    background: #111;
}

.contact__submit:hover {
    color: #111;
    background: #efefef;
    border: solid 1px #111;
}

.contact__small {
    font-style: italic;
    font-size: 0.9rem;
}

@media(max-width:800px) {
    .contact {
        display: block;
        overflow: hidden;
    }
    .contact__card {
        border-radius: 0;
        height: 100%;
    }
}
