@charset "utf-8";
/* CSS Document */

/* フォーム */


input, textarea{
	padding: 5px; 
	margin: 4px 0 20px 0; 
	background: #fff; 
	color: #555; 
	border: 1px #cab181 solid;
	
	/* -- CSS3 Shadow - create a shadow around each input element -- */ 
	-webkit-box-shadow: 0px 0px 4px #aaa;
	-moz-box-shadow: 0px 0px 4px #aaa; 
	box-shadow: 0px 0px 4px #aaa;
	
	/* -- CSS3 Transition - define what the transition will be applied to (i.e. the background) -- */		
	-webkit-transition: background 0.3s linear;		
}

input:focus {
    border:solid 1px #EEA34A;
}

 input.submit { 	
	width: 140px; 
	color: #eee; 
	margin-top: 10px;
	background-color: #8c713a;
	border: none;
	
	/* -- CSS3 Transition - define which property to animate (i.e. the shadow)  -- */
	-webkit-transition: -webkit-box-shadow 0.3s linear;
	
	/* -- CSS3 - Rounded Corners -- */
	-moz-border-radius: 4px; 
	-webkit-border-radius: 4px;
	border-radius: 4px; 

	/* -- CSS3 Shadow - create a shadow around each input element -- */ 


} 

input.submit:hover { 		
	-webkit-box-shadow: 0px 0px 20px #555;
	-moz-box-shadow: 0px 0px 20px #aaa; 
	box-shadow: 0px 0px 20px #555;	
	cursor:  pointer; 
} 	
