.background_form_f {
    background-image: url('../../img/index/Feedback_form/Feedback_form_fon.png');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background_form_f .overlay_f {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    max-width: 400px;
    width: 100%;
}

.background_form_f .form-container_f {
    display: flex;
    flex-direction: column;
}

.background_form_f .title_f {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.background_form_f .description_f {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.background_form_f .field_f {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.background_form_f input,
.background_form_f textarea {
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.background_form_f input {
    width: 100%;
}

.background_form_f textarea {
    height: 100px;
    resize: vertical;
}

.background_form_f button {
    background-color: rgb(226, 180, 59);
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.background_form_f button:hover {
    background-color: #000000;
}

.background_form_f button:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.background_form_f input:focus,
.background_form_f textarea:focus {
    outline: none;
    border-color: #e2b43b;
    box-shadow: 0 0 0 3px rgba(226, 180, 59, 0.25);
}

.background_form_f .invalid_f {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.25);
}

.background_form_f .field-error_f {
    min-height: 16px;
    margin: 0 0 4px;
    color: #ffadad;
    font-size: 12px;
    line-height: 1.3;
}

.background_form_f .feedback-status_f {
    min-height: 18px;
    margin: 6px 0 12px;
    font-size: 13px;
    font-weight: 500;
}

.background_form_f .feedback-status_f.is-loading {
    color: #f7d17a;
}

.background_form_f .feedback-status_f.is-success {
    color: #97f0b4;
}

.background_form_f .feedback-status_f.is-error {
    color: #ffadad;
}

@media (max-width: 600px) {
    .background_form_f .overlay_f {
        padding: 20px;
    }

    .background_form_f .title_f {
        font-size: 24px;
    }

    .background_form_f .description_f {
        font-size: 14px;
    }

    .background_form_f button {
        font-size: 14px;
    }
}
