
/* Custom Contact form by Kimberly
--------------------------------------------- */
.contact-form label {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-form label[for="gdpr"] {
    display: inline-block;
    margin-bottom: 2rem;
    margin-left: 0.75rem;
}

.contact-form label span {
    color: #9b2121;
}

.contact-form input[type="text"],
.contact-form input[type="email"]{
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.contact-form input[type="checkbox"] {
    display: inline-block;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.contact-form input[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background-color: #9b2121;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    height: 10rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.contact-form input[type="submit"]:hover {
    background-color: #791a1a;
}


@media screen and (max-width: 60rem) {
    .contact-form label[for="gdpr"] {
        width: 90%;
    }
}