.feedback-form-component__box {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-end;
}

.feedback-form-component__image {
    max-width: 905px;
    width: 100%;
    height: 515px;
    border-radius: 40px;
    overflow: hidden;
}

.feedback-form-component__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 700px) {
    .feedback-form-component__box {
        justify-content: center;
        align-items: center;
    }

    .feedback-form-component__image {
        display: none;
    }
}

.feedback__form {
    width: 320px;
    display: flex;
    flex-direction: column;
}

.feedback-form__input-control {
    margin-bottom: 20px;
    position: relative;
}

.feedback-form__input-control .error-message {
    display: none;
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #D70015;
    padding-left: 5px;
}

.feedback-form__input-control .error-message.error {
    display: block;
}

.feedback-form__input {
    width: 100%;
    padding: 16px;
    border: 1px solid #AEAEB2;
    border-radius: 50px;
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #00A76B;
}

.feedback-form__input::-moz-placeholder {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #AEAEB2;
}

.feedback-form__input:-ms-input-placeholder {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #AEAEB2;
}

.feedback-form__input::placeholder {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #AEAEB2;
}

.feedback-form__input.success {
    border: 1px solid #00A76B;
}

.feedback-form__input.error {
    border: 1px solid #D70015;
    color: #D70015;
}

.feedback-form__input.error::-moz-placeholder {
    color: #D70015;
}

.feedback-form__input.error:-ms-input-placeholder {
    color: #D70015;
}

.feedback-form__input.error::placeholder {
    color: #D70015;
}

.feedback-form__message {
    margin-bottom: 12px;
}

.feedback-form__message .error-message {
    display: none;
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #D70015;
    padding-left: 5px;
}

.feedback-form__message .error-message.error {
    display: block;
}

.feedback-form__textarea {
    resize: none;
    width: 100%;
    height: 129px;
    padding: 16px;
    border: 1px solid #AEAEB2;
    border-radius: 20px;
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #00A76B;
}

.feedback-form__textarea.error {
    border: 1px solid #D70015;
    color: #D70015;
}

.feedback-form__textarea::-moz-placeholder {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #AEAEB2;
}

.feedback-form__textarea:-ms-input-placeholder {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #AEAEB2;
}

.feedback-form__textarea::placeholder {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #AEAEB2;
}

.feedback-form-agreement__text {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #AEAEB2;
}

.feedback-form-agreement__link:link, .feedback-form-agreement__link:visited {
    color: #00A76B;
    text-decoration: underline;
}

.feedback-form-agreement__link:hover {
    text-decoration: underline;
}

.feedback-form__button {
    margin-top: 32px;
    max-width: 142px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .feedback-form__button {
        margin-top: 10px;
    }

}
@media screen and (max-width: 700px) {
    .feedback__form {
        width: 100%;
    }
}