.hero-image-wrapper {
    background-image: url("/images/contact-hero.jpg");
}

.container.header {
    margin-top: 50px;
    margin-bottom: 50px;
}

.container.body {
    margin-bottom: 80px;
}

.cookie-info {
    padding: 10px 20px;
    background-color: #dfa28654;
    border: 1px solid #dfcf86;
}

.cookie-info a {
    text-decoration: underline;
    color: #86c7df;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form .form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;

    @media screen and (min-width: 768px) {
        flex-direction: row;
    }
}

form .form-group {
    flex-grow: 1;
}

form a {
    color: #86c7df;
}

form .form-control {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    border: 1px solid #c5c5c5;
    width: 100%;
}

form textarea.form-control {
    height: auto;
}

form .checkbox-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
}

form input[type=checkbox] {
    width: 1.3rem;
    height: 1.3rem;
}

.form-group label {
    display: none;
}

button {
    border: 1px solid #c5c5c5;
    background-color: white;
    color: #86c7df;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    height: calc(1.5em + 0.75rem + 2px);
}

form .recaptcha-wrapper {
    position: relative;
}

form input[type=checkbox].hidden {
    z-index: -1;
    opacity: 0;
    position: absolute;
    top: 23px;
    left: 13px;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0;
}

.feedback {
    color: #86c7df;
    display: inline-block;
    margin-left: 20px;
}

.feedback.error {
    color: red;
}

