/* ================== 로그인 (사이트 톤: main.css / sub 탭) ================== */
.member-login {
	width: 100%;
	max-width: 440px;
	margin: 0 auto;
	box-sizing: border-box;
}

.member-login__sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.member-login__fields {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.member-login__field input {
	width: 100%;
	box-sizing: border-box;
	height: 52px;
	padding: 0 18px;
	font-family: var(--main-font, 'pretendard', sans-serif);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -0.02em;
	color: #111;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 8px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.member-login__field input::placeholder {
	color: rgba(0, 0, 0, 0.38);
	font-size: 15px;
}

.member-login__field input:hover {
	border-color: rgba(0, 0, 0, 0.22);
}

.member-login__field input:focus {
	border-color: #af357c;
	box-shadow: 0 0 0 3px rgba(175, 53, 124, 0.12);
}

.member-login__save {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
}

.member-login__save input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: #af357c;
	cursor: pointer;
}

.member-login__save label {
	font-family: var(--main-font, 'pretendard', sans-serif);
	font-size: 15px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.55);
	letter-spacing: -0.02em;
	cursor: pointer;
	user-select: none;
}

.member-login__actions {
	margin-top: 28px;
}

.member-login__submit {
	width: 100%;
	height: 52px;
	box-sizing: border-box;
	font-family: var(--main-font, 'pretendard', sans-serif);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #fff;
	background: #111;
	border: 1px solid #111;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.member-login__submit:hover {
	background: #2a2a2a;
	border-color: #2a2a2a;
}

.member-login__submit:focus-visible {
	outline: 2px solid #af357c;
	outline-offset: 3px;
}

.member-login__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: clamp(12px, 3vw, 22px);
	margin-top: 28px;
	padding-top: 26px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.member-login__links a {
	font-family: var(--main-font, 'pretendard', sans-serif);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
	position: relative;
	transition: color 0.2s ease;
}

.member-login__links a:hover {
	color: #af357c;
}

@media screen and (max-width: 768px) {
	.member-login__field input {
		height: 48px;
		font-size: 15px;
		padding: 0 16px;
	}

	.member-login__submit {
		height: 48px;
		font-size: 15px;
	}

	.member-login__links {
		gap: 14px 18px;
		font-size: 14px;
	}

	.member-login__links a {
		font-size: 14px;
	}
}

/* ================== 아이디/비번 찾기 등 (기존 테이블 폼) ================== */
.order_wrap{width:450px; margin:60px auto;}

.login_st{width:100%;}
.login_st input[type=text],.login_st input[type=email]{
	font-family: var(--main-font, 'pretendard', sans-serif);
	padding:3%;
	font-size:15px;
	width:100%;
	box-sizing:border-box;
	margin-bottom:8px;
	border:1px solid rgba(0,0,0,0.14);
	border-radius:8px;
	background:#fff;
	height:50px;
}

.login_st .pwdBox{
	font-family: var(--main-font, 'pretendard', sans-serif);
	padding:3%;
	font-size:15px;
	width:100%;
	box-sizing:border-box;
	border:1px solid rgba(0,0,0,0.14);
	border-radius:8px;
	background:#fff;
	height:50px;
}

.login_st input[placeholder=아이디]{font-weight:400;}
.login_st input[placeholder=비밀번호]{font-weight:400;}

.login_st input::-webkit-input-placeholder { font-size: 14px;color:rgba(0,0,0,0.38); }
.login_st input::-moz-placeholder { font-size: 14px;color:rgba(0,0,0,0.38); }
.login_st input:-ms-input-placeholder { font-size: 14px;color:rgba(0,0,0,0.38); }
.login_st input:-moz-placeholder { font-size: 14px;color:rgba(0,0,0,0.38); }

/* 아이디저장 */
.id-chk{margin-top:3%; margin-left:2%;}
.id-chk .squaredThree{ float:left;}
.id-chk p{
	float:left;
	margin-left:6%;
	font-size:14px;
	font-weight:500;
	color:#666;
	line-height:1.6;
}

/* 로그인버튼 */
.login-btn a{
	width:100%;
	margin:3% auto;
	padding:2% 0;
	background-color:#111;
	color:#fff;
	text-align:center;
	display:block;
	font-weight:600;
	font-size:18px;
	border-radius:8px;
	border:1px solid #111;
	transition:background 0.2s ease;
}
.login-btn a:hover{background:#2a2a2a;}

/* 회원가입,아이디비밀번호찾기 */
.find-btn{display:flex; justify-content:center;gap:20px;}
.find-btn a{color:rgba(0,0,0,0.5);text-decoration:none;font-weight:500;}
.find-btn a:hover{color:#af357c;}

/* 모바일 */
@media screen and (max-width:768px) {
	.order_wrap{width:100%; margin:40px auto;}

	.login_st input[type=text],.login_st input[type=email]{ padding:4%; font-size:13px; height:45px;}
	.login_st .pwdBox{padding:4%; font-size:13px; height:45px;}

	.login_st input[placeholder=아이디]{font-weight:400;}
	.login_st input[placeholder=비밀번호]{font-weight:400;}

	.login_st input::-webkit-input-placeholder { font-size: 13px;color:rgba(0,0,0,0.38); }
	.login_st input::-moz-placeholder { font-size: 13px;color:rgba(0,0,0,0.38); }
	.login_st input:-ms-input-placeholder { font-size: 13px;color:rgba(0,0,0,0.38); }
	.login_st input:-moz-placeholder { font-size: 13px;color:rgba(0,0,0,0.38); }

	/* 아이디저장 */
	.id-chk p{
		margin-left:10%;
		font-size:13px;
		font-weight:500;
		color:#666;
		line-height:1.6;
	}

	/* 로그인버튼 */
	.login-btn a{margin:5% auto; padding:3% 0; font-size:16px;}
	
	/* 회원가입,아이디비밀번호찾기 */
	.find-btn{display:flex; justify-content:center; font-size:13px; margin-top:5%;}
}




/* ================== 회원가입 ================== */
.join_sec .privacy_wrap {
	padding: 15px;
	border: 1px solid #ddd;
	background: #eee;
	height: 250px;
	overflow: scroll;
	overflow-x: hidden;
}
.join_con .tm1{color:#454848; font-size:18px; margin-bottom:13px; font-weight:600;}
.join_con {margin-bottom:50px;}

/* 이용약관내용 */
.join_con .privacy_wrap h1 {padding:10px 0; font-size: 24px; font-weight: 600;}
.join_con .privacy_wrap h2{margin:15px 0 10px; padding:0; font-size:16px; font-weight:600;}
.join_con .privacy_wrap p {margin:0 0 10px; font-weight:400; font-size:14px;}
.privacy_wrap ol {margin:0;}
.privacy_wrap ol .mt6 {padding-left:10px;}
.privacy_wrap ol li {margin-bottom:5px; margin-left:5px;}

/* 체크박스 */
.join_con .privacy-chk{float:right; margin:7px 5px 0 0;}
.join_con .cm1{margin-left:30px; font-weight:600; font-size:14px;}


/* 버튼 */
.btn_con {text-align: center;}
.join_f_btn {
	display: inline-block;
	width: 150px;
	height:55px;
	line-height:55px;
	box-sizing:border-box;
	text-align: center;
	font-size: 16px;
}
.btn_st2 {color: #333; background-color: #ddd;}
.btn_st1 {color: #fff; background-color: #848989;}
.btn_st1:hover {background-color: #454848;}




/* ================== 개인정보처리방침 ================== */
.policytitle {
	font-size:20px;
	color:#454848;
	margin::20px 0;
	font-weight:600;
	border-bottom:1px solid #d8d8d8;
	padding-bottom:15px;
}
.policycontent {
	word-break:keep-all;
	font-size:16px;
	color:#333;
	line-height:1.6;
	margin:15px 0 60px;
}
.title_inner{font-size:15px;font-weight:normal;margin-left:10px;color:#888888;}

/* 태블릿 */
@media screen and (min-width:769px) and (max-width:1199px) {
	.policytitle {margin-left:10px;}
	.policycontent {margin-left:10px;}
}
@media screen and (max-width:768px) {
	.policytitle {width:95%; font-size:18px; text-align:center; margin:20px auto; word-break:keep-all;}
	.policycontent {width:95%; font-size:13px; margin:15px auto 60px;}
	.title_inner{font-size:13px;font-weight:400;}
}