/*Normalize.scss settings*/
html,body{
	font-family: Lato, "PingFang TC", "Helvetica Neue", Helvetica;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	margin: 0 auto;padding:0;
	width: 100%;height: 100%;
	background: url('../images/signup-bg.jpg') no-repeat center center;
	background-attachment: fixed;
	background-size: cover;
}
.loginWrap {;
	position: relative;
	margin: 0 auto;padding:0;
	text-align: center;
	line-height: 1.8;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}

[hidden], template {
	display: none;
}
a {
	background-color: transparent;
}
a:active, a:hover {
	outline: 0;
}
abbr[title] {
	border-bottom: 1px dotted;
}
b, strong {
	font-weight: bold;
}
dfn {
	font-style: italic;
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
mark {
	background: #ff0;
	color: #000;
}
small {
	font-size: 80%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
img {
	border: 0;
}

button, input, optgroup, select, textarea {
	color: inherit;
	/* 1 */
	font: inherit;
	/* 2 */
	margin: 0;
	/* 3 */
}
button {
	overflow: visible;
}
button, select {
	text-transform: none;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
	/* 1 */
	-webkit-appearance: button;
	/* 2 */
	cursor: pointer;
	/* 3 */
}
button[disabled], html input[disabled] {
	cursor: default;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input {
	line-height: normal;
}
input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	box-sizing: content-box;
	/* 2 */
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/*---------------------------------------------login設定--------//*/

.signUp{
	width: 600px;
	display: inline-block;
	margin:3em auto;
	padding: 30px 0px 60px 0px;
	color:#333;
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow:0px -2px 25px 1px rgba(0, 0, 0, 0.4);
	border-top: 6px solid #14579d;
}

.signUp h1{
	color:#14579d;
	font-size: 1.8em;
	text-align: center;
	display: inline-block;
}
.logo{
	margin:20px auto;
	overflow: hidden;
	width: 80%;
	border-bottom: 1px solid #999;
}

.logo img{
	max-width: 100%;
	height: 60px;
	margin: 0 auto 10px auto;
	-o-object-fit: contain;
	object-fit: contain;
	
}
/*---------------------------------------------form_grp設定--------//*/

.signUp .form_grid{
	width: 80%;
	margin:0 auto;
}
.Sform_grid{
	width: 80%;
	text-align: left;
	margin: 0 auto;
	line-height: 1.8;
}

.Sform_grp {
	text-align: left;
	clear: both;
	overflow: hidden;
	margin-bottom: 20px;
}
.Sform_grp .Sform_title {
	font-weight: bold;
	text-align: right;
}
.Sform_grp .Sform_content {
	width: 100% ;
}
.Sform_grp .Sform_content input{
	color: #333;
	font-size: 1em;
	display: block;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #CCC;
	padding: .5em;
	background: #fff;
	vertical-align: middle;
	margin-bottom: .3em;
	box-sizing: border-box;
	border-radius: 4px;
	transition: border, 0.2s, ease-out;
	transition: box-shadow, 0.2s, ease-out;
}


.Sbtn_grp{
	margin:2em auto;
	text-align: center;
}
.Sbtn_grp button{
	width: 222px;
	display: inline-block;
	color: #FFFFFF;
	box-shadow: 0px 2px 4px rgba(50, 137, 229, 0.5);
	padding:8px 60px;
	border-radius: 4px;
	border:none;
	background: #3289e5;
	margin-right:30px;
	box-sizing: border-box;
	border-radius: 4px;
	transition: border, 0.2s, ease-out;
	transition: box-shadow, 0.2s, ease-out;
	
}
.Sbtn_grp button:nth-child(2){
	margin-right:0;
}
.Sbtn_grp button:hover,
.Sbtn_grp button:focus {
	color: #FFFFFF;
	cursor: pointer;
	background: #1a70ca;
}
.Sbtn_grp button[type="reset"]{
	background: #777;
	box-shadow: 0px 2px 4px #ccc;
}
.Sbtn_grp button[type="reset"]:hover,
.Sbtn_grp button[type="reset"]:focus{
	background: #666;
}


@media (max-width: 767px) {
	.signUp{
		width: 90%;
		padding: 30px 0px;
	}
	.logo{ margin: 0 auto; }
	.Sbtn_grp button{
		width: 45%;
		margin-right: 8%;
		padding: 8px 0px;
	}
}




