Okey, ich habs verstanden grins

Also, die html/php datei muss das enthalten.

Code:
<link rel="stylesheet" type="text/css" media="screen" href="./css/test.css" />


<input type="text" class="inputText" name="mail" id="mail" />


Die CSS datei muss das enthalten.

Code:
			textarea, select, input[type="text"], input[type="password"] {
				background-color: #fafafa;
				border: 1px solid #8da4b7;
			}
			
			textarea, input[type="text"], input[type="password"] {
				width: 100%;
			}
		
			textarea:focus, select:focus, input[type="text"]:focus, input[type="password"]:focus {
				background-color: #fff9f4;
				border: 1px solid #fa2;
			}
			
			textarea, select, input[type="text"], input[type="password"] {
				padding: 2px;
			}



Demo: Demo Input Farben

Dann hab ich noch eine Frage, in dem pfand zur CSS datei ist Media angegeben...ist das Wichtig ?