body {
    padding-top: calc(var(--nav-height) + 24px);
}

#contact-section {
    min-height: calc(100vh - 85px - 100px - 8rem);
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 2rem;
    margin: 4rem auto;
}
#contact-section .section-p {
    max-width: 50ch;
}
#contact-form-cont {
    margin: 2rem auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 3px;
    border: 1px solid var(--grey-border);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.075);
    width: 100%;
    max-width: 400px;
}
#contact-form-cont .err {
    margin-bottom: 1rem;
    text-align: center;
    max-width: 350px;
}
#contact-form {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
}
#contact-form .form-input {
    margin: 0.5rem 0;
    width: 100%;
    padding: 0.75rem 0.85rem;
}
#contact-form textarea {
    resize: vertical;
    min-height: 85px;
}
#contact-form .form-submit {
    background: var(--primary);
    color: white;
    margin-top: 1rem;
    padding: 0.85rem;
    font-size: 70%;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--primary-h);
    box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.1);
    transition: 0.15s ease background-color;
}
#contact-form .form-submit:hover {
    background-color: var(--primary-h);
}
#contact-form-submit {
    display: flex;
    flex-flow: column;
    align-items: center;
}
#rerequest-contact {
    background: var(--primary);
    color: white;
    display: inline-block;
    margin-top: 1.75rem;
    padding: 0.85rem;
    font-size: 70%;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--primary-h);
    box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.1);
    transition: 0.15s ease background-color;
}
#rerequest-contact:hover {
    background-color: var(--primary-h);
}
