.cydjoin_wrap{
	width:100%;
	max-width:1300px;
	margin:0 auto;
	padding:32px 20px 60px;
	box-sizing:border-box;
	font-family:'Pretendard','Noto Sans KR','Malgun Gothic',sans-serif;
	color:#1d2736;
}

.cydjoin_inner{
	width:100%;
	max-width:760px;
	margin:0 auto;
}

.cydjoin_page_title{
	margin:0 0 24px;
	font-size:32px;
	font-weight:800;
	line-height:1.3;
	text-align:center;
	color:#132238;
}

.cydjoin_tab_wrap{
	display:flex;
	gap:10px;
	margin-bottom:28px;
}

.cydjoin_tab_btn{
	flex:1;
	height:58px;
	border:1px solid #d7dfeb;
	background:#f4f7fb;
	color:#6f7b8a;
	font-size:18px;
	font-weight:700;
	cursor:pointer;
}

.cydjoin_tab_btn.cydjoin_active{
	border-color:#2e6bff;
	background:#065d92;
	color:#fff;
}

.cydjoin_form_box{
	display:none;
	padding:28px 22px;
	border:1px solid #e3e9f2;
	background:#fff;
	box-sizing:border-box;
}

.cydjoin_form_box.cydjoin_active{
	display:block;
}

.cydjoin_section{
	margin-bottom:30px;
}

.cydjoin_section:last-child{
	margin-bottom:0;
}

.cydjoin_section_title{
	margin:0 0 16px;
	font-size:21px;
	font-weight:800;
	color:#16263d;
}

.cydjoin_agree_box{
	margin-bottom:18px;
	padding:18px;
	border:1px solid #e2e8f1;
	background:#fbfdff;
}

.cydjoin_agree_box:last-child{
	margin-bottom:0;
}

.cydjoin_agree_title{
	margin:0 0 12px;
	font-size:16px;
	font-weight:700;
	color:#1c2b40;
}

.cydjoin_agree_content{
	height:150px;
	padding:14px;
	border:1px solid #dbe3ef;
	background:#fff;
	overflow-y:auto;
	box-sizing:border-box;
	font-size:14px;
	line-height:1.7;
	color:#4a5668;
	white-space:pre-line;
}

.cydjoin_agree_row{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	margin-top:14px;
	flex-wrap:wrap;
}

.cydjoin_agree_label{
	font-size:15px;
	font-weight:600;
	color:#213147;
}

.cydjoin_toggle_group{
	display:inline-flex;
	padding:4px;
	border-radius:999px;
	background:#edf2f8;
	border:1px solid #d7e0ea;
	box-sizing:border-box;
}

.cydjoin_toggle_btn{
	min-width:84px;
	height:42px;
	padding:0 18px;
	border:0;
	border-radius:999px;
	background:transparent;
	color:#6c7a8b;
	font-size:14px;
	font-weight:700;
	cursor:pointer;
}

.cydjoin_toggle_btn.cydjoin_active{
	background:#065d92;
	color:#fff;
}

.cydjoin_allagree_wrap{
	margin-top:18px;
	padding:0 18px 15px 18px;
	background:linear-gradient(180deg,#f7faff 0%, #eef5ff 100%);
	border:1px solid #dbe7fb;
}

.cydjoin_form_grid{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:16px 18px;
}

.cydjoin_form_col_full{
	grid-column:1 / -1;
}

.cydjoin_input_group{
	position:relative;
}

.cydjoin_input_label{
	display:block;
	margin:0 0 8px;
	font-size:14px;
	font-weight:700;
	color:#22324b;
}

.cydjoin_input_label .cydjoin_required{
	margin-left:4px;
	color:#2f6fff;
}

.cydjoin_input_text,
.cydjoin_input_password,
.cydjoin_input_email,
.cydjoin_input_tel,
.cydjoin_input_textarea{
	width:100%;
	height:52px;
	padding:0 16px;
	border:1px solid #dbe3ef;
	background:#fff;
	box-sizing:border-box;
	font-size:15px;
	color:#1d2736;
	outline:none;
	transition:border-color 0.2s ease, box-shadow 0.2s ease;
}

.cydjoin_input_textarea{
	height:140px;
	padding:14px 16px;
	resize:vertical;
	min-height:140px;
	line-height:1.6;
}

.cydjoin_input_text:focus,
.cydjoin_input_password:focus,
.cydjoin_input_email:focus,
.cydjoin_input_tel:focus,
.cydjoin_input_textarea:focus{
	border-color:#3b7cff;
	box-shadow:0 0 0 4px rgba(59,124,255,0.09);
}

.cydjoin_sms_wrap{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:10px;
	padding:14px 16px;
	border:1px solid #dbe3ef;
	background:#fff;
	box-sizing:border-box;
	min-height:52px;
	flex-wrap:wrap;
}

.cydjoin_sms_label{
	font-size:15px;
	font-weight:600;
	color:#22324b;
}

.cydjoin_workchip_wrap{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
}

.cydjoin_workchip{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:42px;
	padding:10px 16px;
	border:1px solid #d7dfeb;
	border-radius:999px;
	background:#f7f9fc;
	font-size:14px;
	font-weight:700;
	color:#526075;
	cursor:pointer;
	box-sizing:border-box;
	transition:all 0.2s ease;
}

.cydjoin_workchip input{
	display:none;
}

.cydjoin_workchip.cydjoin_active{
	border-color:#2e6bff;
	background:linear-gradient(135deg,#2e6bff 0%, #4da6ff 100%);
	color:#fff;
	box-shadow:0 8px 18px rgba(46,107,255,0.2);
}

.cydjoin_workchip_info{
	margin-top:10px;
	font-size:13px;
	color:#5c6b81;
}

.cydjoin_btn_row{
	display:flex;
	justify-content:center;
	gap:12px;
	margin-top:34px;
	flex-wrap:wrap;
}

.cydjoin_btn{
	min-width:150px;
	height:54px;
	padding:0 24px;
	border:0;
	font-size:16px;
	font-weight:800;
	cursor:pointer;
}

.cydjoin_btn_submit{
	background:#065d92;
	color:#fff;
}

.cydjoin_btn_cancel{
	background:#eef3f8;
	color:#4c5b70;
	border:1px solid #d9e2ee;
}

.cydjoin_btn:hover{
	transform:translateY(-1px);
}

.cydjoin_hidden_input{
	display:none;
}

.cydjoin_addr_row{
	display:flex;
	gap:10px;
	align-items:center;
}

.cydjoin_addr_row .cydjoin_input_text{
	flex:1;
}

.cydjoin_addr_btn{
	flex:0 0 auto;
	min-width:110px;
	height:52px;
	padding:0 18px;
	border:0;
	background:#065d92;
	color:#fff;
	font-size:14px;
	font-weight:800;
	cursor:pointer;
}

.cydjoin_addr_btn:hover{
	transform:translateY(-1px);
}

.cydjoin_addr_detail{
	margin-top:10px;
}

.cydjoin_juso_dim{
	display:none;
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.55);
	z-index:9998;
}

.cydjoin_juso_dim.cydjoin_active{
	display:block;
}

.cydjoin_juso_layer{
	display:none;
	position:fixed;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	width:100%;
	max-width:560px;
	height:80vh;
	max-height:700px;
	padding:0;
	border-radius:22px;
	background:#fff;
	box-shadow:0 20px 60px rgba(0,0,0,0.28);
	overflow:hidden;
	z-index:9999;
}

.cydjoin_juso_layer.cydjoin_active{
	display:block;
}

.cydjoin_juso_head{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:10px;
	padding:18px 20px;
	border-bottom:1px solid #e8eef6;
	background:#fff;
	box-sizing:border-box;
}

.cydjoin_juso_title{
	font-size:18px;
	font-weight:800;
	color:#16263d;
}

.cydjoin_juso_close{
	width:38px;
	height:38px;
	border:0;
	border-radius:999px;
	background:#eef3f8;
	color:#44536a;
	font-size:22px;
	line-height:1;
	cursor:pointer;
}

.cydjoin_juso_body{
	width:100%;
	height:calc(80vh - 77px);
	max-height:623px;
	background:#fff;
}

.cydjoin_juso_iframe{
	width:100%;
	height:100%;
	border:0;
	display:block;
}

.cydjoin_input_inline{
	position:relative;
	display:flex;
	align-items:center;
}

.cydjoin_input_inline .cydjoin_input_text{
	padding-right:120px; /* 메시지 공간 확보 */
}

.cydjoin_check_msg{
	position:absolute;
	right:12px;
	top:50%;
	transform:translateY(-50%);
	font-size:12px;
	font-weight:600;
	color:#ff6b6b; /* 기본 안내색 */
	pointer-events:none;
	white-space:nowrap;
}

@media screen and (max-width:640px){
	.cydjoin_page_title{
		font-size:24px;
	}

	.cydjoin_section_title{
		font-size:18px;
	}

	.cydjoin_btn{
		width:100%;
		max-width:220px;
	}
	.cydjoin_addr_row{
		flex-direction:column;
		align-items:stretch;
	}

	.cydjoin_addr_btn{
		width:100%;
	}

	.cydjoin_juso_layer{
		width:calc(100% - 24px);
		height:78vh;
		border-radius:18px;
	}

	.cydjoin_juso_body{
		height:calc(78vh - 77px);
	}

	.cydjoin_form_grid{
		grid-template-columns:1fr;
	}
}