/* Исправление цвета текста в полях формы */
.form__input {
    color: #333 !important; /* Темный цвет текста для лучшей видимости */
}

.form__input::-webkit-input-placeholder {
    color: #666 !important; /* Темно-серый цвет для placeholder */
}

.form__input:-moz-placeholder {
    color: #666 !important;
}

.form__input::-moz-placeholder {
    color: #666 !important;
}

.form__input:-ms-input-placeholder {
    color: #666 !important;
}

/* Дополнительные стили для лучшей видимости */
.form__input:focus {
    color: #000 !important; /* Черный цвет при фокусе */
}

.form__input._border {
    color: #333 !important;
}

.form__input._border:focus {
    color: #000 !important;
}

.form__input._grey {
    color: #333 !important;
}

.form__input._grey:focus {
    color: #000 !important;
}

/* Стили для textarea */
.form__textarea {
    color: #333 !important;
}

.form__textarea::-webkit-input-placeholder {
    color: #666 !important;
}

.form__textarea:-moz-placeholder {
    color: #666 !important;
}

.form__textarea::-moz-placeholder {
    color: #666 !important;
}

.form__textarea:-ms-input-placeholder {
    color: #666 !important;
}

.form__textarea:focus {
    color: #000 !important;
}
