/* 
 * Account Box
=========================== */
.account-box {
	position: relative;
	color: #888;
	font-family: Helvetica;
	font-size: 14px;
	margin: 0 auto;
	max-width: 480px;
	padding: 28px;
}

.account-box.with-border {
	border: 1px solid #ececec;
	box-shadow: 0 0 3px #dcdcdc;
}
/* 
 * Account Form
=========================== */
.account-form input[type="text"],
.account-form input[type="password"],
.account-form input[type="email"],
.account-form input[type="tel"],
.account-form select{
	height: 48px;
}

.account-form label.label-control {
	margin-top: 14px;
}

.account-form .radio-box{
	margin: 6px 0;
}

.account-form .submit-btn{
	height: 48px;
	background-color: #000;
	color: #fff;
	border: 0;
}
/* 
 * Agreement
=========================== */
.agreement > a {
	text-decoration: underline;
}
/* 
 * Switch Signin
=========================== */
.switch-signin-copy{
	float: left;
	line-height: 39px;
	font-size: 16px;
}

.switch-signin-link{
	float: right;
}
/*
// SmartPhone Size
// MAX: 767px
*/
@media (max-width: 767px){
	/* 
	 * Account Box
	=========================== */
	.account-box {
		padding: 16px;
	}
	/* 
	 * Switch Signin
	=========================== */
	.switch-signin-copy,
	.switch-signin-link{
		float: none;
	}

	.switch-signin-copy{
		text-align: center;
	}

	.switch-signin-link{
		display: block;
	}
}