.section__form {
    position: relative;
    width: 100%;
    max-width: 588px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #F5F5F5;
    color: #0f4146;
    margin-inline: auto;

    border-radius: var(--border-radius);
}

.section__form h5,
.section__form h4 {
    text-align: center;
}

.section__form-price {
    border-radius: 50px;
    border: 2px dashed #f42f29;
    background: rgba(244, 47, 41, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    color: #f42f29;
    text-align: center;
    text-overflow: ellipsis;

    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 120% */

    padding: 12px;
}

.section__form-price.type-2 {
    color: #FFF;
    font-weight: 400;
    border: none;
    background: #F42F29;
}

.section__form-discount {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
    margin-bottom: -15px;
    text-align: center;
}

.section__form-discount span {
    text-decoration-line: line-through;
}

.section__form-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section__form-input-wrapper {
    position: relative;
}

.section__form-input {
    width: 100%;
    padding: 14px 12px;

    overflow: hidden;

    text-overflow: ellipsis;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */

    outline: none;
    border-radius: 56px;
    border: 1px solid #E5E5E1;
    background: #FFF;
}

.section__form-button {
    width: 100% !important;
}

.price__values-container {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.price__values-container > div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 18px;
    width: 100%;
}

.price__values-container > div > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price__previous-value {
    border-radius: 58px 0 0 58px;
    border: 1px solid #E5E5E1;
    background: #FFF;
}

.price__previous-value p {
    color: #7C7B79;
    font-family: "Inter";
}

.price__previous-value p:last-child {
    text-decoration: line-through;
}

.price__values-container > div > div > p:first-child {
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 10px; /* 200% */
}

.price__values-container > div > div > p:last-child {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
}

.price__current-value {
    padding: 10px 18px;
    border-radius: 0 58px 58px 0;
    background: #F42F29;
    color: #fff;
}