/*
 * Единое голубое кольцо фокуса для полей ввода вместо тяжёлого чёрного outline браузера.
 * Классы форм входа/регистрации переопределяют фокус в своих файлах (там border: 0 + тень).
 */
input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="image"]):not([type="color"]):focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #155dfc;
    box-shadow: 0 0 0 1px rgba(21, 93, 252, 0.28);
}

/* Поля с ошибкой в модалке календаря — оставляем красную обводку при фокусе */
.calendar-create-modal__input-error:focus,
.calendar-ready-modal__input-error:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.18) !important;
}
