.form {
    display: flex;
    gap: 40px;
    margin-block: 40px;
    justify-content: center;
    font-family: "Roboto", sans-serif;
}

.form__left p {
    text-align: center;
}

.form__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.form__left-product {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.form__left-product-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 94px;
}

.form__left-product-benefits-benefit {
    /* width: 100% */
    max-width: 77px;
}

.form__left-product-benefits-benefit:first-child {
    max-width: 94px;
}

.form__left-product-benefits-benefit:last-child {
    max-width: 82px;
}

.form__left-product-image {
    width: 100%;
    max-width: 150px;
    margin: auto 0;
    align-self: center;
    vertical-align: middle;
}

.form__left-progress {
    text-align: center;
    font-weight: 700;
}

.form__left-progress-title {
    font-size: 12px;
    margin-bottom: 8px;
}

.form__left-progress-subtitle {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 15px;
}

.form__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 290px;
    width: 100%;
}

.form__right-logo {
    margin-bottom: 25px;
}

.form__right-flag {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    align-items: center;
}

.form__right-flag-text {
    font-size: 12px;
}

.form__right-flag-title {
    margin-bottom: 10px;
}

.form__right-price {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 35px;
}

.form__right-price-old,
.form__right-price-new {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.form__right-price-old span:first-child {
    margin-bottom: 15px;
    font-size: 12px;
}

.form__right-price-old span:last-child {
    font-size: 32px;
}

.form__right-price-new span:first-child {
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 700;
}

.form__right-price-new span:last-child {
    font-size: 40px;
    font-weight: 700;
}

.form__right-form-select,
.form__right-form-input {
    background: #fff;
    color: #B0B0B0;
    border-radius: 5px;
    padding: 16px 20px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #1E1E1E;
}

.form__right-form-button {
    background: #00AF43;
    font-weight: 700;
    padding: 20px 24px;
    font-size: 16px;
    border: none;
    color: white;
    border-radius: 7px;
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
}

.form--mobile {
    display: none;
}

.form__flag-title {
    font-size: 16px;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
}

.form__logo--white,
.form__right-logo--white {
    display: none;
}

.form__logo--black,
.form__right-logo--black {
    display: block !important;
}

.form__product-benefits .form__product-benefits-benefit,
.form__flag .form__flag-image {
    width: revert;
    margin: 0 !important;
}

@media (min-width:380px) {
    .form__flag-text {
        margin-bottom: 0 !important;
        font-size: small;
        line-height: 150%;
    }
}

.form__right .form__right-flag-text {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .form {
        display: none;
    }

    .form--mobile {
        display: flex;
        flex-direction: column;
        gap: 25px;
        max-width: 290px;
        width: 100%;
        margin-inline: auto;
    }

    .form--mobile .form__product-benefits {
        display: flex;
        justify-content: center;
    }

    .form--mobile .form__flag {
        display: flex;
        gap: 12px;
        justify-content: center;
        align-items: center;
    }

    .form--mobile .form__product {
        display: flex;
        gap: 30px;
    }

    .form--mobile .form__price {
        display: flex;
        gap: 25px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .form--mobile .form__price-old {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form--mobile .form__price-old span:first-child {
        margin-bottom: 0;
        font-size: 12px;
    }

    .form--mobile .form__price-old span:last-child {
        font-size: 32px;
    }

    .form--mobile .form__price-new {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form--mobile .form__price-new span:first-child {
        margin-bottom: 0;
        font-size: 12px;
        font-weight: 700;
    }

    .form--mobile .form__price-new span:last-child {
        font-size: 40px;
        font-weight: 700;
    }

    .form--mobile .form__product-image {
        max-width: 120px;
    }

    .form--mobile .form__progress {
        text-align: center;
    }

    .form--mobile .form__progress-title {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .form--mobile .form__progress-subtitle {
        font-weight: 900;
        margin-bottom: 13px;
        font-size: 16px;
    }

    .form--mobile .form__form-select,
    .form--mobile .form__form-input {
        background: white;
        padding: 16px 20px;
        font-size: 16px;
        color: #B0B0B0;
        border-radius: 5px;
        width: 100%;
        margin-bottom: 20px;
        border: 1px solid #1E1E1E;
        box-sizing: border-box;
    }

    .form--mobile .form__form-button {
        background: #00AF43;
        font-weight: 700;
        padding: 20px 24px;
        font-size: 16px;
        border: none;
        color: white;
        border-radius: 7px;
        width: 100%;
        margin-top: 15px;
        cursor: pointer;
    }
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}