.form-wm {
    position: relative;
    min-height: 100vh;
}

.form-wm::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/forma-wm/img/background-image.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* opacity: 0.35; */
    z-index: -1;
}

.contact-form__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-form__item {
    width: 100%;
    max-width: 774px;
}

.contact-form__item.form-container {
    background-color: #F0F0F0;
}

.contact-form__item.banner {
    display: flex;
    /* justify-content: center; */
    background-color: #FF88BD;
    padding: 46px 36px 28px;
    z-index: 2;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.35);
}

.contact-form__banner-image {
    position: relative;
    padding-right: 10px;
}
/* 
.contact-form__banner-image::after {
    content: '';
    position: absolute;
    right: 0;
    top: -6px;
    height: 100%;
    width: 6px;
    background-color: #fff;
} */

.contact-form__banner-content h1 {
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 0.01em;
    color: #fff;
    font-family: "CeraPro", sans-serif;
}

.contact-form__banner-content {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container .form {
    padding: 40px;
}

.form-container .input__field {
    border: 1px solid #00174b;
    border-radius: 2px;
    width: 100%;
    height: 65px;
    padding: 10px;
    font-size: 20px;
    background-color: #fff;
}

.form-container .input__field:focus {
    border-color: var(--bwt-pink);
}

label.input {
    font-weight: 700;
    font-size: 15px;
    color: #00174b;
}

.form__bottom {
    justify-content: center;
}

.form-container .form__submit {
    padding: 15px 43px;
    font-weight: 700;
    font-size: 15px;
    background: #ff88bd;
    border-radius: 25px;
}

.form-container .two-cols__form_item {
    margin-bottom: 4px;
}

.input-required::before {
    display: none;
}

.input-required span {
    position: relative;
}

.input-required span::before {
    color: #FF0000;
    content: "*";
    right: -8px;
    position: absolute;
    top: 0px;
}

div.body-wrapper {
    max-width: 100%;
}

.contact-form__banner-image img {
    width: 155px;
}

.input span {
    font-weight: 700;
    font-size: 15px;
    color: #00174b;
}
.custom-select {
    width: 100%;
    font-family: sans-serif;
    font-size: 16px;
    border: 1px solid #0a1a4f;
    position: relative;
    user-select: none;
    font-weight: 700;
    font-size: 15px;
    color: #00174b;
}

.custom-select .custom-select__input-select {
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
    font-weight: 600;
}

.custom-select .options {
    display: none;
    border-top: 1px solid #0a1a4f;
    position: absolute;
    z-index: 1000;
    width: calc(100% + 2px);
    background-color: white;
    left: -1px;
}

.custom-select .option {
    padding: 12px 16px;
    cursor: pointer;
    border: 1px solid #00174b;
    border-top: 0px;
}
.custom-select .option:hover:not(.selected-option) {
    background-color: #e8e8e8;
}
.custom-select .selected-option {
    background-color: #00154d;
    color: white;
    font-weight: bold;
}
@media (max-width: 767.98px) {
    .section.form-wm {
        padding: 0px;
    }
}
@media(max-width: 480px) {
    .form-wm .container {
        padding: 0;
    }

    .contact-form__banner-image img {
        width: 126px;
    }

    .contact-form__banner-content h1 {
        font-size: 15px;
    }

    .contact-form__banner-content p {
        font-size: 9px;
    }
}
@media (max-width: 991.98px) {
    .contact-form__banner-content h1 {
        font-size: 30px;
    }
}
@media (max-width: 767.98px) {
    .contact-form__banner-content h1 {
        font-size: 24px;
    }
    .contact-form__banner-image img {
        width: 83px;
        min-width: 83px;
    }
    .contact-form__item.banner {
        padding: 28px 40px 12px;
    }
}
@media (max-width: 510px) {
    .contact-form__banner-content h1 {
        font-size: 18px;
        line-height: 1.5;
    }
    .contact-form__item.banner {
        align-items: center;
    }
}