/* Стили для отображения ошибок валидации в формах */

/* Контейнер для ошибок */
.form-input__error {
    display: none;
    color: #ff0000;
    font-size: 12px;
    margin-top: 5px;
    line-height: 1.4;
}

/* Визуальное выделение поля с ошибкой */
.form__input.error input {
    border-color: #ff0000 !important;
}

/* Стили для loader состояния кнопок */
button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Стили для readonly полей */
input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}
