.feedback {
    padding: 5rem 0;
    background-color: #202938;
    width: 100%;
    margin: 0 auto;
	position: relative;
}

.feedback__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    padding: 6rem 4.3125rem;
    background-color: #FE6A04;
    border-radius: 1.25rem;
    gap: 5rem;
}

.feedback__title {
    margin-bottom: 2.5rem;
    font-size: var(--font-h2-desktop);
    font-weight: 900;
    color: #fff;
}

.feedback__description {
    font-size: var(--font-main-desktop);
    font-weight: 600;
    color: #fff;
}

.feedback__form {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    background-color: #202938;
    border-radius: 1.5rem;
    width: 100%;
}

.feedback__field:not(:last-of-type) {
    margin-bottom: 1.25rem;
}

.feedback__input {
    width: 100%;
    padding: 1.25rem 0.8775rem;
    border: 1px solid #BBB;
    border-radius: 0.625rem;
    background: transparent;
    font-family: 'Ysabeau SC', sans-serif;
    font-weight: 400;
    font-size: var(--font-small-desktop);
    color: #fff;
    text-transform: uppercase;
    transition: .3s;
}

.feedback__input::placeholder {
    color: rgba(255,255,255,.7);
}

.feedback__input:hover {
    border-color: #FF6B01;
}

.feedback__input:focus {
    outline: none;
    border-color: #FF6B01;
    box-shadow: 0 0 0.75rem rgba(255,122,0,.35);
}

.feedback__agreement {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.1875rem;
    cursor: pointer;
}

.feedback__checkbox {
    display: none;
}

.feedback__checkmark {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #BBB;
    border-radius: 0.25rem;
    transition: .3s;
}

.feedback__checkbox:checked + .feedback__checkmark {
    background-color: #FF6B01;
    border-color: #FF6B01;
}

.feedback__agreement-text {
    font-size: var(--font-small-desktop);
    line-height: 1.4;
    font-family: 'Ysabeau SC', sans-serif;
    font-weight: 400;
    color: #BBB;
}

.feedback__agreement-link {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: .3s;
}

.feedback__agreement-link:hover {
    color: #FF6B01;
}

.feedback__button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    background-color: #FF6B01;
    padding: 0.8125rem 0;
    border-radius: 5rem;
    font-family: 'Ysabeau SC', sans-serif ;
    font-weight: 700;
    font-size: var(--font-button-desktop);
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
}

.feedback__button-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.feedback__button-icon svg {
    display: block;
}

@media(max-width: 1024px) {
    .feedback__container { grid-template-columns: 1fr; }
}

@media(max-width: 768px) {
    .feedback__container {
        padding: 4rem 3rem;
    }

    .feedback__description { font-size: 1.844rem; }
    .popup__form-input { font-size: 1.277rem; }
    .wpcf7-list-item > label { gap: 1rem; }
}