.catalog-recall {
    padding: 24px 100px;
    background-color: rgb(157, 111, 148);
    border-radius: 24px;
    margin-bottom: 200px;
    color: white;
}
.catalog-recall__title {
    color: inherit;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
}
.catalog-recall__form {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-gap: 10px;
    position: relative;
}
.catalog-recall__form::after {
    content: "";
    width: 64px;
    height: 90px;
    background-image: url("images/icon-check-2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -5px;
    right: 0;
}
.form-item {
    grid-column: span 8;
}
.form-item--submit {
    grid-column: span 6;
}
.form-item--100 {
    grid-column: span 24;
}
.form-item .btn-submit {
    width: 100%;
    background-color: white;
    border: 0;
    border-radius: .625rem;
    font-size: 16px;
    line-height: 29px;
    color: #9D6F94;
    text-align: left;
    padding: 0 16px;
    position: relative;
    cursor: pointer;
    height: 3rem;
}
.form-item .btn-submit::after {
    content: "";
    width: 8px;
    height: 12px;
    background-image: url("images/icon-arrow-right.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}
.form-item--checkbox a {
    text-decoration: underline;
}
.form-item--checkbox label,
.form-item--checkbox a {
    color: white !important;
}
.form-item input[type=checkbox] + label {
    padding-left: 25px;
}
.form-item input[type=checkbox] + label:before {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    top: 3px;
}

@media screen and (max-width: 1000px) {
    .catalog-recall__form::after {
        content: none;
    }
    .catalog-recall {
        padding: 24px;
    }
    .form-item--submit {
        grid-column: span 8;
    }
}

@media screen and (max-width: 800px) {
    .catalog-recall {
        margin-bottom: 40px;
        padding: 24px 10px;
    }
    .form-item {
        grid-column: span 24;
        margin-bottom: 0 !important;
    }
}