.seller_login_page{
	width:100%;
	min-height:520px;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:60px 15px;
	box-sizing:border-box;
}

.seller_login_box{
	width:100%;
	max-width:430px;
	background:#fff;
	border:1px solid #e5e8ef;
	border-radius:18px;
	padding:38px 34px;
	box-sizing:border-box;
	box-shadow:0 12px 35px rgba(20,35,60,0.08);
}

.seller_login_title{
	font-size:26px;
	font-weight:700;
	color:#222;
	text-align:center;
	margin-bottom:14px;
}

.seller_login_desc{
	font-size:14px;
	line-height:1.6;
	color:#666;
	text-align:center;
	margin-bottom:30px;
}

.seller_login_row{
	margin-bottom:20px;
}

.seller_login_row label{
	display:block;
	font-size:14px;
	font-weight:600;
	color:#333;
	margin-bottom:8px;
}

.seller_login_row input{
	width:100%;
	height:48px;
	border:1px solid #d8dde6;
	border-radius:10px;
	padding:0 14px;
	box-sizing:border-box;
	font-size:15px;
	color:#222;
	outline:none;
}

.seller_login_row input:focus{
	border-color:#222;
}

.seller_login_btn{
	width:100%;
	height:52px;
	border:0;
	border-radius:10px;
	background:#222;
	color:#fff;
	font-size:16px;
	font-weight:700;
	cursor:pointer;
}

.seller_login_btn:hover{
	background:#000;
}

@media(max-width:480px){
	.seller_login_page{
		padding:35px 14px;
		align-items:flex-start;
	}

	.seller_login_box{
		padding:30px 22px;
		border-radius:14px;
	}

	.seller_login_title{
		font-size:22px;
	}
}