.headForm {
    position: fixed;
    margin-bottom: 43px;
}

.feedback__form {
    padding: 20px 35px 26px 48px;
}

.feedback__title {
    font-family: VDNHLebedev2;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    color: #00B2A9;
}

.feedback__input {
    border: 1px solid rgba(17, 17, 19, 0.2);
    box-sizing: border-box;
    border-radius: 4px;
    margin-bottom: 24px;
}

.feedback__input_text {
    padding-left: 16px;
    height: 48px;
    width: 100%;
    font-family: VDNH;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
    color: #111113;
}
.feedback__input_text:focus-visible {
    outline:none;
    border: 3px solid rgba(0, 178, 169, 1);
    border-radius: 4px;
    color: #111113;
    font-weight: bold;
}
.feedback__input_text::placeholder {
    color: rgba(17, 17, 19, 0.6);
}

.feedback__input_textarea {
    padding-left: 16px;
    width: 100%;
    font-family: VDNH;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
    color: rgba(17, 17, 19, 0.6);
}
.feedback__input_textarea:focus-visible {
    outline:none;
    border: 3px solid rgba(0, 178, 169, 1);
    border-radius: 4px;
}
.feedback__input_textarea:focus{
    color: #111113;
}

.feedback__submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 13px 24px;
    background: #00B2A9;
    border-radius: 4px;
    border: none;
    width: 100%;
}
.feedback__submit:hover {
    background: #008B84;
}

.feedback__submit_text {
    color: #ffffff;
    font-family: VDNH;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.feedback__submit_success {
    color: #00B2A9;
    text-align: center;
}