@charset "utf-8";

html,
body {
	height: 100%;
}

.contents {
	width: 100%;
}

.centerContents {
	display: table;
	height: 100%;
	vertical-align: middle;
	text-align: center;
}

.centerContents .container {
	display: table-cell;
	height: 100%;
	width: 100%;
	vertical-align: middle;
	text-align: center;
}


/* Input,Select,Textarea
----------------------------------------------------*/
input[type="text"],
input[type="password"] {
	font-size: 16px;
	line-height: 1;
	font-family: inherit;
	font-weight: inherit;
	padding: 0 10px;
	width: 100%;
	background: none;
	border: none;
	height: 44px;
	-webkit-tap-highlight-color: rgba(3,4,5,0);
}

select,
textarea {
	font-size: 16px;
	line-height: 1;
	font-family: inherit;
	font-weight: inherit;
	padding: 0 10px;
	width: 100%;
	background: #FFF;
	border: 1px solid #D3D4D5;
	border-radius: 3px;
	height: 44px;
	-webkit-tap-highlight-color: rgba(3,4,5,0);
}

textarea {
	font-size: 12px;
	line-height: 14px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #939495;
}

input.error,
select.error,
textarea.error {
	background: #FEE;
	border: 1px solid #F00;
}

.errMsg {
	font-size: 12px;
	color: #F00;
	margin: 5px 0 0 0;
	font-weight: bold;
}

