.form {
    position: relative;
    background: var(--formBg);
    max-width: 1344px;
}

.form * {
    color: var(--white);
}

.form:before,
.form:after {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    background: var(--white);
    width: 100%;
    height: 50px;
}

.form:before {
    top: -1px;
}

.form:after {
    bottom: -1px;
}

.form__row {
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    overflow: hidden;
}

.form__product {
    max-width: 453px;
}

.form__item {
    max-width: 414px;
    position: relative;
}

.form__select {
    appearance: none;
}

.select {
    position: relative;
}

.select:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    display: block;
    background: url("../img/selectArrow.svg") no-repeat center center / contain;
    width: 10px;
    aspect-ratio: 1 / 1;
    transform: translateY(-50%);
}

.form__input {
    color: var(--text);
    font-family: var(--inter);
    font-size: 1.3125em;
    display: block;
    background: var(--white);
    width: 100%;
    margin: 12px 0;
    padding: 15px 30px;
    cursor: pointer;
    border: none;
    border-radius: 90px;
}

.form__input::placeholder {
    color: var(--text);
    font-family: var(--inter);
    font-size: 1.3125rem;
}

.price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 0 15px;
}

.price__item {
    display: flex;
    align-items: center;
    gap: 5px;
    width: auto;
}

.price__item_new span {
    font-family: var(--myriadPro);
    font-size: 4.69rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.price__item_old {
    position: relative;
}

.price__item_old:before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--white);
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.price__item_old span {
    font-size: 1.875rem;
    line-height: 1;
    text-align: center;
}

.form__btn {
    color: var(--white);
    font-family: var(--inter);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    background: var(--buttonBg);
    width: 100%;
    max-width: 414px;
    padding: 20px;
    cursor: pointer;
    border: none;
    border-radius: 13px;
}


@media screen and (max-width: 1440px) {
    .form__row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
}

@media screen and (max-width: 1024px) {

    .form {
        padding-bottom: 60px;
    }

    .form:after {
        content: none;
    }

    .form:before {
        height: 175px;
    }

    .form__row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form__product {
        max-width: 280px;
    }


}

@media screen and (max-width: 576px) {
    .form__row {
        padding: 0 15px;
    }

    .form__input {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .form__input::placeholder {
        font-size: 1rem;
    }

    .price__item_new span {
        font-size: 2.5rem;
    }

    .price__item_old span {
        font-size: 1.5rem;
    }

    .form__btn {
        font-size: 1rem;
        padding: 20px 10px;
    }

    .price {
        padding: 20px 0;
    }

}