.form-engineering {
    position: relative;
    min-height: 100vh;
}
.section.form-engineering {
    padding-bottom: 180px;
}
.form-engineering::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/forma-pharma/img/background.jpg');
    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: #00174B;
    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: 20px;
}
/* 
.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: 20px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #fff;
    font-family: "CeraPro", sans-serif;
}
.contact-form__subtitle {
    font-size: 12px;
}
.contact-form__banner-content {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 6px solid #fff;
    padding-left: 24px;
}

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

.form-container .input__field {
    border: 1px solid #00174B;
    border-radius: 8px;
    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: #00174B;
    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 #00174B;
    position: absolute;
    z-index: 1000;
    width: calc(100% + 2px);
    background-color: white;
    left: -1px;
    transition: .4s;
}

.custom-select .option {
    padding: 12px 16px;
    cursor: pointer;
    border: 1px solid #00174b;
    border-top: 0px;
    transition: .4s;
}
.custom-select .option:hover:not(.selected-option) {
    background-color: #00174B;
    color: #fff;
}
.custom-select .selected-option {
    background-color: #00174B;
    color: white;
    font-weight: bold;
}
@media (max-width: 767.98px) {
    .section.form-engineering {
        padding: 0px;
    }
}
@media(max-width: 480px) {
    .form-engineering .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;
    }
}
.popup-success {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
    opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-success.active {
	opacity: 1;
	visibility: visible;
}
.popup-success__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(2px);
	z-index: 1;
}
.popup-success__wrapper {
	position: relative;
	z-index: 2;
	max-width: 600px;
	width: 90%;
}
.popup-success__window{
	width: 100%;
	padding: 30px 20px;
	text-align: center;
	background: white;
	border-radius: 25px;
	display: none;
}
.popup-success__window p{
	margin-top: 25px;
	margin-bottom: 0;
	color: rgba(0, 23, 75, 1);
	font-style: 16px;
	font-family: CeraPro-Medium,sans-serif;
}