@charset "utf-8";

.contain{
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}
#Head{
	position: relative;
	overflow: hidden;
	padding: 62px 0 59px;
	box-sizing: border-box;
}
.join_membership{
	padding-bottom: 20px;
}
.h_logo{
	display: block;
	overflow: hidden;
	width: 240px;
	height: 50px;
	margin: 0 auto;
	background: url(../img/logo2.png) no-repeat center/cover;
}
/*로그인 박스*/
#login{
	position: relative;/*부모자격*/
	width: 340px;
	margin: 0 auto;/*가로중앙*/
	padding-top: 100px;
/*	border: 2px solid #737373;*/
/*	border-radius: 10px;*/
	box-sizing: border-box;
}
/*아이디 비번박스 공통*/
.minput{
	position: relative;
	width: 100%;
	height: 36px;
	margin-top: 30px;
}
.minput:first-child{/*아이디박스*/
	margin-top: 60px;
}
/*입력창 공통 디자인*/
.minput input{/*inline-block 기본임*/
	display: block;
	width: 100%;
	height: 50px;
	border: 1px solid #737373;
/*	border-radius: 5px;*/
	font-size: 1.1em;
	color: #666;
	padding-left: 5px;
}

/*크롬브라우저에서 focus갈때 테두리 없애기*/
.minput input:focus{
	outline: none;
}

/*로그인 버튼 박스*/
#login div:nth-child(3){
	position: relative;/*나의 부모는? #login*/
	display: block;
	width: 100%;
	height: 60px;
	margin-top: 40px;
/*	outline: 1px solid red;*/
}
/*로그인 submit 버튼 디자인*/
#sbtn{
	width: 100%;
	height: 100%;
	background-color: #151517;
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	border: none;
}

/* 기타 체크 링크 박스*/
#login div:last-child{
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	margin: 30px 0;
}

#login div:last-child>span{/*체크박스영역*/
/*	margin: 0 15px;*/
	color: #666;
}

/*체크박스 옆 세로정렬 맞추기*/
#login div:last-child>span>input{
	vertical-align: -2px;/*옆에오는 인라인요소 위치를 기본 위치로 부터 변경*/
}

#login div:last-child>a{/*기타링크*/
	margin: 0 15px;	
}
#loginBox{
	width: 100%;
	height: 74%;
}
.naver_login_btn{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}