.cydlogin_wrap{
	width:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:24px 16px;
	box-sizing:border-box;
}

.cydlogin_box{
	width:100%;
	max-width:460px;
	padding:34px 26px 30px;
	border:1px solid #e2e9f3;
	border-radius:26px;
	background:#fff;
	box-shadow:0 18px 50px rgba(20,35,70,0.10);
	box-sizing:border-box;
}

.cydlogin_title{
	margin:0 0 10px;
	font-size:30px;
	font-weight:800;
	line-height:1.3;
	text-align:center;
	color:#132238;
}

.cydlogin_subtitle{
	margin:0 0 28px;
	font-size:14px;
	line-height:1.6;
	text-align:center;
	color:#66748a;
}

.cydlogin_form{
	width:100%;
	margin:0;
}

.cydlogin_group{
	margin-bottom:16px;
}

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

.cydlogin_input{
	width:100%;
	height:54px;
	padding:0 16px;
	border:1px solid #dbe3ef;
	border-radius:14px;
	background:#fff;
	box-sizing:border-box;
	font-size:15px;
	color:#1d2736;
	outline:none;
	transition:border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.cydlogin_btn{
	width:100%;
	height:56px;
	margin-top:8px;
	border:0;
	border-radius:999px;
	background:linear-gradient(135deg,#2d6bff 0%, #45a1ff 100%);
	color:#fff;
	font-size:16px;
	font-weight:800;
	cursor:pointer;
	box-shadow:0 12px 25px rgba(47,111,255,0.22);
	transition:transform 0.2s ease;
}

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

.cydlogin_linkrow{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap:wrap;
	gap:10px 14px;
	margin-top:24px;
	padding-top:20px;
	border-top:1px solid #ebf0f6;
}

.cydlogin_link{
	position:relative;
	display:inline-block;
	padding:4px 2px;
	font-size:14px;
	font-weight:700;
	color:#5a6880;
	text-decoration:none;
	transition:color 0.2s ease;
}

.cydlogin_link:hover{
	color:#2d6bff;
}

.cydlogin_link:after{
	content:'';
	position:absolute;
	left:0;
	bottom:0;
	width:0;
	height:2px;
	background:linear-gradient(135deg,#2d6bff 0%, #45a1ff 100%);
	transition:width 0.2s ease;
}

.cydlogin_link:hover:after{
	width:100%;
}

@media screen and (max-width:500px){
	.cydlogin_box{
		max-width:100%;
		padding:28px 18px 24px;
		border-radius:22px;
	}

	.cydlogin_title{
		font-size:26px;
	}
}