.formFull {
    position: relative;
}

.formFull .button {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 54px;
}

@media (max-width: 767px) {
    .formFull .button {
        padding: 0 13px;
        width: 42px;
        height: 42px;
        top: 5px;
        right: 5px;
    }
}

/* Встраиваемая форма с бэкграундом */
.formBg {
    padding: 120px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .formBg {
        padding: 40px 0;
    }
}

/* Встраиваемая форма */
.formBlock {
    padding: 60px;
    background-color: #fff;
    border-radius: 15px;
}

.formBlock__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.formBlock__textContent {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60%;
}

.formBlock__textContent--w70 {
    width: 70%;
}

.formBlock__title {
    font-family: Cera Pro;
    font-size: 54px;
    font-weight: 500;
    line-height: 67.88px;
    letter-spacing: -0.01em;
}

.formBlock__text {
    font-family: Cera Pro;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
}

.formRow__inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.formRow__inputs .inputBlock {
    flex-grow: 2;
}

.formRow__inputs .inputBlock input {
    width: 100%;
}

.formRow__inputs .button {
    height: 74px;
    font-family: Cera Pro;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
    text-align: center;
}

.formBlock__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.formRow__checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 1199px) {
    .formBlock .formRow__inputs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .formBlock .formRow__inputs .inputBlock {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .formBlock {
        padding: 20px;
        padding-bottom: 30px;
        gap: 20px;
    }

    .formBlock__textContent {
        width: 100%;
    }

    .formBlock__title {
        font-family: Cera Pro;
        font-size: 32px;
        font-weight: 500;
        line-height: 38.4px;
    }

    .formBlock__text {
        font-family: Cera Pro;
        font-size: 16px;
        font-weight: 400;
        line-height: 22.4px;
        width: 100%;
    }

    .formBlock .formRow__inputs {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .formBlock .formRow__inputs .button {
        width: 100%;
        justify-content: center;
    }

    .formBlock__form .button {
        padding: 14px;
        font-family: Cera Pro;
        font-size: 16px;
        font-weight: 700;
        line-height: 22.4px;
        text-align: center;
        height: 50px;
    }
}

/* Встраиваемая форма END */

/* Блок success  */
.formSuccess__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.formSuccess__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.formSuccess__content img {
    width: 110px;
}

.formSuccess__textCol {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.formSuccess__title {
    font-family: Cera Pro;
    font-size: 54px;
    font-weight: 500;
    line-height: 59.39px;
    text-align: center;
}

.formSuccess__text {
    font-family: Cera Pro;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
}

.formSuccess__controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .formSuccess {
        padding: 47px 0;
    }

    .formSuccess__content,
    .formSuccess__inner {
        gap: 36px;
    }

    .formSuccess__title {
        font-family: Cera Pro;
        font-size: 26px;
        font-weight: 500;
        line-height: 31.2px;
        text-align: center;
    }

    .formSuccess__text {
        text-align: center;
    }
}

/* Блок success END */