@import url(http://fonts.googleapis.com/earlyaccess/cwtexhei.css);

body{
    background: url(../img/bg.jpg) fixed 50% no-repeat white;
    font-family:'cwTeXHei',"微軟正黑體", "Microsoft JhengHe", Helvetica, serif;
    background-color: #ddc7c6;
}

h2 {
	color: #3EB4AB;
}

form {
	width: 280px;
	height: 300px;
	margin: 200px auto;
	background: white;
	border-radius: 3px;
	box-shadow: 0 0 10px rgba(0,0,0, .4); 
	text-align: center;
	padding-top: 1px;
}



form .text-field {											/* Input fields; Username, Password etc. */
	border: 1px solid #a6a6a6;
	width: 230px;
	height: 40px;
	border-radius: 3px;
	margin-top: 10px;
	padding-left: 10px;
	color: #3EB4AB;
	background: #fcfcfc;
	outline: none;
}


form .text-field:focus {
	box-shadow: inset 0 0 2px rgba(0,0,0, .3);
	color: #3EB4AB;
	background: white;
}

form .button {																				/* Submit button */
	border-radius: 3px;
	border: 1px solid #3EB4AB;
	box-shadow: inset 0 1px 0 #25837c;
	width: 242px;
	height: 40px;
	margin-top: 20px;
	background:#3EB4AB;
    text-decoration: none
	cursor: pointer;
	color: white;
	font-weight: bold;
	
	
	font-size: 13px;
}

form a{text-decoration: none;}

form .button:hover {
	background:#279b92;
}


form .button:active {
	background:#118980;
}


