.full-height-img-with-form {
    position: relative;
    background-color: #E6E8EB;
}

.full-height-img-with-form__container {
    display: flex;
    align-items: flex-end;
    justify-content: end;
}

.full-height__img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;


}

.full-height__img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.full-height__form {
    float: right;
    width: 50%;
    height: 100%;
    padding-left: 2rem;
    padding-block: 2.5rem;
}

.full-height__form-text-above {
    margin-bottom: 2rem;
}


.contact-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-inputs > .form-item {
    width: 100% !important;
    padding: 0 !important;
}

.contact-form-inputs input, .contact-form-inputs textarea, .contact-form-inputs select {
    margin: 0 !important;
    border: 2px solid #DEB57B !important;
}

.contact-form-inputs > .form-item > p {
    margin-bottom: 0 !important;
}

.contact-form.form-item-fw {
    padding: 0 !important;
}

.contact-form.wpcf7-submit {
    margin: 1rem !important;
}

.wpcf7-select {
    padding: 10px !important;
    width: 100% !important;
    background-color: white !important;
    border-radius: 3px !important;
}

.wpcf7 input[type=submit] {
    margin-inline: 0 !important;
}

.full-height__form > .wpcf7 {
    margin-inline: 0 !important;
}


@media (max-width: 1024px) {
    .full-height-img-with-form__container {
        flex-direction: column;
    }

    .full-height__img {
        position: relative;
        width: 100%;
        aspect-ratio: 3/2;
    }

    .full-height__form {
        width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 520px) {
    .wpcf7 input[type=submit] {
        width: 100% !important;
    }
}