@charset "euc-kr";

html{background: #ead7da;}

.wrapper{
	/* display: flex;
	align-items: center;
	flex-direction: column; 
	justify-content: center;
	width: 100%;
	min-height: 85%; */
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 85%;
}
.login_wrap{
	position: absolute;
	width: 552px;
	min-height: 565px;
	background: #fff;
	border-radius: 20px;
	box-sizing: border-box;
	padding: 90px 55px;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0,0,0,0.3);
	box-shadow: 0 10px 30px 0 rgba(0,0,0,0.3);
	text-align: center;
	top: 50%; margin-top: -340px;
	left: 50%; margin-left: -276px;
}
.login_wrap h1{
	margin-bottom: 40px;
}
.login_wrap label {
	display: block;
}
.login_wrap input[type=text], .login_wrap input[type=password]{
	box-sizing: border-box;
	padding: 0 20px;
	background: #fff;
	text-align: left;
	color: #333;
	width: 100%;
	height: 56px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 20px;
	margin-bottom: 20px;
}
.login_wrap input[type=text]::placeholder, .login_wrap input[type=password]::placeholder{
	color: #ccc;
}
.login_wrap input[type=submit]{
	box-sizing: border-box;
	padding: 0 20px;
	background: #ca000d;
	text-align: center;
	color: #fff;
	width: 100%;
	height: 80px;
	border-radius: 5px;
	font-size: 20px;
	margin-bottom: 15px;
	text-transform: uppercase;
	cursor: pointer;
	transition: .5s all;
}
.login_wrap input[type=submit]:hover{
	background: #b7000e;
}
.login_wrap ul{
	display: flex;
	justify-content: flex-end;
}
.login_wrap ul li a{
	display: block;
	color: #999;
	font-size: 16px;
	font-weight: 400;
}
.login_wrap ul li:last-child{
	margin-left: 35px;
	position: relative;
}
.login_wrap ul li:last-child :after{
	display: block;
	position: absolute;
	content: "";
	background: #999999;
	width: 1px;
	height: 10px;
	left: -17px;
	top: 50%;
	margin-top: -5px;
}
.login_wrap ul li:hover a{
	color: #ee6857;
}
.login_bg{
	background: url("/images/login/login_bg.png") no-repeat;
	width: 100%; height: 100%;
	position: fixed;
	left: 50%; margin-left: -495px;
	top: 37%;
}
.fadeInDown{
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@keyframes fadeInDown {
	0%{
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	100% {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	}
}


/* join_step01 */
.join_form p.warn{text-align :right;}
.subpage_title{
	width: 1200px;
	height: 50px;
	border-bottom: 2px solid #666;
	padding-bottom: 15px;
	position: relative;
}
.subpage_title p.tit_textbox{
	font-size: 26px;
	font-weight: bold;
	color: #000;
	text-transform: uppercase;
	text-align: left;
	position: absolute;
	left: 0;
	top: 20px;
}
ul.right_navi{
	position: absolute;
	right: 0;
	top: 30px;
}
ul.right_navi b{
	vertical-align: baseline;
}
.join_wrap{
	position: relative;
	box-sizing: border-box;
	width: 1200px;
	margin: 0 auto;
	padding-top: 50px;
}
.join_wrap>div>h3{
	font-size:18px;
	text-align:left;
	height:40px;
	line-height: 40px;
}
.join_wrap .join_box{
	width: 100%;
	height:350px;
	padding:20px;
	overflow-y: auto;
	text-align:left;
	border:1px solid #a1a1a1;
	color:#4d4d4d;
	line-height:25px;
	background: #fff;
	margin-top: 10px;
	box-sizing: border-box;
}
.join_chk{
	float: right;
	margin-top: 20px;
}
.join_chk b{
	vertical-align: bottom;
}
.join_btn{
	text-align: center;
}
.join_btn input[type="submit"], .jointosignin{
	border: none;
	background:#777;
	color: #fff;
	padding: 10px 60px;
	border-radius: 5px;
	transition: .2s all;
	cursor: pointer;
	margin-top: 30px;
	font-size: 16px;
}
.join_btn input[type="submit"]:hover, .jointosignin:hover{
	background:#333;
}

/* join_step2 */
.join_btn>a{
	border: none;
	background:#ca000d;
	color: #fff;
	padding: 10px 60px;
	border-radius: 5px;
	transition: .2s all;
	cursor: pointer;
	margin-top: 10px;
	text-transform: uppercase;
}
.join_btn>a:hover{
	background:#b7000e;
}
.join_form li{
	overflow: hidden;
	font-size: 18px;
	border-bottom: 1px solid #b3b3b3;
}
.join_form li:last-child{
	border-bottom: none;
}
.join_form li .plbl, .join_form li .ptxt{
	float: left;
	padding: 15px 0;
	min-height: 27px;
	line-height: 50px;
	box-sizing: border-box;
}
.join_form li .plbl{
	width: 25%;
	font-weight: bold;
	color: #000;
	padding-left: 40px;
}
.join_form li .plbl .lbl{
	position: relative;
}
.join_form li .plbl .lbl.required:before, .join_form p.warn:before{
	content: "*";
	display: inline-block;
	vertical-align: middle;
	margin-top: 2px;
	margin-right: 5px;
	color: #ca000d;
}
.join_form li .ptxt{
	background: #fff;
	width: 75%;
	padding-left: 24px;
	vertical-align: middle;
}
.join_form li .ptxt button, .join_form li .ptxt a{
	border: 0;
	background: #666;
	color: #fff;
	min-width: 100px;
	height: 44px;
	font-size: 15px;
	padding: 0 9px;
	line-height: 30px;
	cursor: pointer;
}
.join_form li .ptxt a{
	display :inline-block;
	text-align: center;
	line-height: 44px;
	vertical-align: sub;
}
.join_form li .ptxt button:hover, .join_form li .ptxt a:hover{
	background: #333;
}
.join_form li input.text{
	display: inline-block;
	padding: 0 5px;
	margin: 0;
	min-width: 200px;
	height: 42px;
	background: #fff;
	border-style: solid;
	border-width: 1px;
	border-color: #ccc #ccc #ccc #ccc;
	border-radius: 0;
}
.blind{
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip-path: polygon(0 0, 0 0, 0 0);
}
.info-ex, .info-ex02, .info-ex03{
	position: relative;
	font-size: 15px;
	margin-top: 7px;
	color: #666;
	padding: 0 0 5px 25px;
	line-height: 20px;
}
.info-ex:before, .info-ex02:before, .info-ex03:before{
	content:"";
	position: absolute;
	top: 3px;
	left: 0;
	display: block;
	width: 15px;
	height: 15px;
	background: url("/images/login/join_warn.png") no-repeat;
}
.join_form li select{
	border: 1px solid #ccc;
	height: 44px;
	min-width: 100px;
	border-radius: 0;
	font-size: 15px;
	padding-left: 10px;
}
.chkboxes label{
	display: block;
	float: left;
	margin-right: 15px;
}


/* find.asp */
.sub_idbox{
	float: left;
	width: 50%;
	text-align: center;
	box-sizing: border-box;
	padding: 0 20px;
}
.sub_idbox h3{
	font-size: 18px;
	margin-bottom: 50px;
}
.sub_idbox h3 b em{
	font-weight: bold;
	color: #cd000a;
	vertical-align: baseline;
}
ul.id_form{
	padding-left: 70px;
}
ul.id_form li{
	margin-bottom: 10px;
}
ul.id_form li label{
	float: left;
	display: block;
	width: 30%;
	text-align: left;
	font-size: 16px;
	line-height: 42px;
}
ul.id_form li input{
	float: left;
	display: block;
	width: 50%;
	height: 42px;
}
.find_btn a{
	background: #ca000d;
	color: #fff;
	padding: 10px 60px;
	transition: all .2s;
}
.find_btn a:hover{
	background:#b7000e;
}



