/*某个人的表格*/
/*reg*/

* {
	padding:0;
}



/*边框*/

button,input,textarea {
	border:1px solid #e0e0e0;
	transition:all .5s;
        width:273px;
	height:39px;
	line-height:39px;
	font-size:13px;
        padding: 0px 10px;
	background-color:#fff
}

/*边框*/

select {
	border:1px solid #e0e0e0;
	transition:all .5s;
	height:39px;
        width:353px;
	line-height:39px;
	font-size:13px;
	background-color:#fff
}





/*框内瞄准颜色*/
input:hover,select:hover,textarea:hover {
	border:1px solid #f87841;
	box-shadow:0 0 8px 0 rgba(87,160,255,.13)
}
input:focus,select:focus,textarea:focus {
	border:1px solid #00FF00;
	box-shadow:0 0 8px 0 rgba(36,131,255,.4)
}




/*按钮*/

.button {
	border:1px solid #e0e0e0;
	transition:all .5s;
	padding:0 20px;
	width:353px;
	height:39px;
	line-height:39px;
	background-color:#fff;
	color:#545454;
	cursor:pointer;
	display:inline-block;
	text-decoration:none;
	text-align:center
}

/*按钮*/

.button:hover {
	border:1px solid #787878;
	color:#232323
}


/*免费注册游戏通行证*/

.button-active {
	width:313px;
	border:none;
	background-color:#f87841;
	color:#fff
}

/*免费注册游戏通行证*/
.button-active:hover {
	border:none;
	background-color:#2b9dde;
	color:#fff
}




/*位置居中*/

.register {
	width:350px;
	margin:auto;
	padding:0 0px;
	text-align:left;
}





