/* 1. Standardowy stan pola z błędem (dla pól pustych lub wpisywanych ręcznie) */
input.inp-err {
    background-color: #ffcccc !important;
    border: 1px solid #ff0000 !important;
    color: #000000 !important;
	}

/* 2. Stan autofill (dla pól uzupełnionych przez przeglądarkę) */
input.inp-err:-webkit-autofill,
input.inp-err:-webkit-autofill:hover, 
input.inp-err:-webkit-autofill:focus,
input.inp-err:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #ffcccc inset !important;
    box-shadow: 0 0 0 1000px #ffcccc inset !important;
    -webkit-text-fill-color: #000000 !important;
	}
