.login_page{
	background:#fff;
	min-height:calc(100vh - 120px);
}

.login_contents{
	min-height:calc(100vh - 120px);
	display:flex;
	align-items:center;
	justify-content:center;
	padding:40px 0;
	box-sizing:border-box;
}

.login_panel{
	width:100%;
	max-width:760px;
	background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
	border:1px solid #e7eaf2;
	border-radius:30px;
	box-shadow:
		0 10px 30px rgba(17,24,39,0.06),
		0 2px 10px rgba(17,24,39,0.03);
	padding:36px 32px 30px;
	box-sizing:border-box;
	position:relative;
	overflow:hidden;
}

.login_panel::after{
	content:'';
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:6px;
	background:linear-gradient(90deg,#4f46e5 0%,#7c3aed 50%,#2563eb 100%);
	opacity:.95;
}

.login_head{
	text-align:center;
	margin-bottom:28px;
}

.login_badge{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:88px;
	height:38px;
	padding:0 14px;
	border-radius:999px;
	background:#f3f5ff;
	color:#373ebb;
	font-size:13px;
	font-weight:800;
	letter-spacing:-0.2px;
	margin-bottom:16px;
}

.login_head h2{
	margin:0 0 10px 0;
	font-size:30px;
	line-height:1.3;
	font-weight:800;
	color:#111827;
	letter-spacing:-0.6px;
}

.login_head p{
	margin:0;
	font-size:15px;
	line-height:1.7;
	color:#666c7a;
	word-break:keep-all;
}

.login_type_grid{
	display:grid;
	grid-template-columns:repeat(3, minmax(0, 1fr));
	gap:12px;
	margin-bottom:24px;
}

.login_type_radio{
	display:none;
}

.login_type_card{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:8px;
	min-height:47px;
	padding:18px 14px;
	border:1px solid #e4e9f2;
	border-radius:20px;
	background:#fff;
	cursor:pointer;
	transition:all .18s ease;
	box-shadow:0 4px 12px rgba(15,23,42,0.03);
	text-align:center;
}

.login_type_card:hover{
	transform:translateY(-1px);
	border-color:#bfc8ff;
	box-shadow:0 10px 20px rgba(79,70,229,0.08);
}

.login_type_card .type_title{
	font-size:16px;
	font-weight:800;
	color:#111827;
}

.login_type_card .type_desc{
	font-size:12px;
	line-height:1.6;
	color:#64748b;
	word-break:keep-all;
}

#login_type_member:checked + .login_type_card{
	border-color:#7c83ff;
	background:linear-gradient(180deg,#f7f8ff 0%, #ffffff 100%);
	box-shadow:0 10px 20px rgba(79,70,229,0.10);
}

#login_type_owner_member:checked + .login_type_card{
	border-color:#93c5fd;
	background:linear-gradient(180deg,#f4f9ff 0%, #ffffff 100%);
	box-shadow:0 10px 20px rgba(37,99,235,0.10);
}

#login_type_creator_member:checked + .login_type_card{
	border-color:#d8b4fe;
	background:linear-gradient(180deg,#faf5ff 0%, #ffffff 100%);
	box-shadow:0 10px 20px rgba(124,58,237,0.10);
}

.login_form_box{
	border:1px solid #e8edf5;
	border-radius:24px;
	background:#fff;
	padding:26px 24px 22px;
	box-shadow:0 8px 20px rgba(15,23,42,0.04);
}

.login_form_title{
	margin:0 0 18px 0;
	font-size:22px;
	font-weight:800;
	line-height:1.35;
	color:#111827;
	text-align:center;
}

.login_form_list{
	list-style:none;
	margin:0;
	padding:0;
}

.login_form_list li{
	margin-bottom:16px;
}

.login_form_label{
	display:block;
	margin-bottom:10px;
	font-size:15px;
	font-weight:700;
	color:#1e293b;
	letter-spacing:-0.2px;
}

.login_form_input{
	width:100%;
	height:52px;
	padding:0 16px;
	border:1px solid #dbe4f0;
	border-radius:16px;
	background:#fbfdff;
	color:#0f172a;
	font-size:14px;
	box-sizing:border-box;
	transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.login_form_input:focus{
	outline:none;
	border-color:#8fb4ff;
	background:#fff;
	box-shadow:0 0 0 4px rgba(59,130,246,0.10);
}

.login_form_input::placeholder{
	color:#94a3b8;
}

.login_save_row{
	display:flex;
	align-items:center;
	gap:8px;
	margin-top:8px;
	margin-bottom:18px;
}

.login_save_row input[type="checkbox"]{
	margin:0;
}

.login_save_row label{
	font-size:14px;
	font-weight:600;
	color:#475569;
	cursor:pointer;
}

.login_submit_btn{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:58px;
	border:none;
	border-radius:18px;
	background:#111827;
	color:#fff;
	font-size:15px;
	font-weight:800;
	letter-spacing:-0.2px;
	cursor:pointer;
	box-shadow:0 8px 18px rgba(17,24,39,0.14);
	transition:background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.login_submit_btn:hover{
	background:#373ebb;
	transform:translateY(-1px);
	box-shadow:0 12px 24px rgba(55,62,187,0.18);
}

.login_join_main_btn{
	margin-top: 10px;
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:52px;
	border-radius:16px;
	background:#ffffff;
	border:1px solid #d6dfeb;
	color:#1e293b;
	font-size:15px;
	font-weight:800;
	text-decoration:none;
	transition:all .18s ease;
	box-shadow:0 4px 12px rgba(15,23,42,0.04);
}

.login_join_main_btn:hover{
	border-color:#a5b4fc;
	background:#f8fbff;
	color:#373ebb;
	transform:translateY(-1px);
}

.login_sub_links{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:14px;
	margin-top:14px;
	flex-wrap:wrap;
}

.login_sub_link{
	position:relative;
	color:#64748b;
	font-size:14px;
	font-weight:700;
	text-decoration:none;
	line-height:1.4;
	transition:color .18s ease;
}

.login_sub_link:hover{
	color:#373ebb;
}

.login_sub_divider{
	width:1px;
	height:12px;
	background:#dbe4f0;
	display:inline-block;
}

@media (max-width:820px){

	.login_join_main_btn{
		height:50px;
		border-radius:14px;
	}

	.login_sub_links{
		gap:12px;
	}
}








@media (max-width:820px){
	.login_contents{
		min-height:auto;
		display:block;
		padding:24px 0 40px;
	}

	.login_panel{
		padding:28px 20px 24px;
		border-radius:24px;
	}

	.login_head h2{
		font-size:26px;
	}

	.login_type_grid{
		grid-template-columns:1fr;
	}

	.login_form_box{
		padding:22px 18px 20px;
		border-radius:20px;
	}
}