.items{
	width: 100%;
}
.form{
	width: 100%;
	height: 60vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.rows{
	width: 60%;
	display: flex;
	gap: 20px;
	border-radius: 10px;
	overflow: hidden;
	background: #f0f0f0;
}
.rows .left{
	width: 50%;
	background: url(./loginBG.9ec2e4b.png);
	background-color: rgba(0, 0, 0, 0);
	background-repeat: repeat;
	background-size: auto;
	background-repeat: no-repeat;
	background-size: contain;
	background-size: auto 70%;
	background-position-y: 50%;
	background-position-x: 0px;
	opacity: 1;
	background-color: #e0c3fc;
}
.rows .right{
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 30px 50px 50px 0px;
}
.rows .row{
	width: 100%;
	position: relative;
}
.rows .row .error{
	position: absolute;
	top: -22px;
	left: 0;
	color: #f60;
}
.rows .row span{
	position: absolute;
	top: 10px;
	right: 10px;
	color: #fff;
}
.rows .row span.ok::after,.rows .row span.no::after{
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.rows .row span.ok::after{
	content: 'ok';
	background: green;
}
.rows .row span.no::after{
	content: 'no';
	background: red;
}
.rows .row h1.pc{
	font-size: 22px;
}
.rows .row .vcode{
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#message{
	width: 100%;
	height: 40px;
	color: red;
	position: absolute;
	top: -40px;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
