.input {
    border: 10px solid #006;
    background: #ffc;
}
.input:hover {
    border: 20px solid #f00;
    background: #ff6;
}
.button {
    border: 16px solid red;
	background: white;
	font-size: 36px;
	color: red;
	width: 250px;
	height: 150px;
}
.button:hover {
    border: 16px solid yellow;
    background: green;
	font-size: 36px;
	color: green;
	width: 350px;
	height: 250px;
}
label {
    display: block;
    width: 150px;
    float: left;
    margin: 2px 4px 6px 4px;
    text-align: right;
}
br { clear: left; }
