html,
html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	font-family: "Calibri", sans-serif;
	background: #0f1316;
}

body {
	position: relative;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../../img/bg003.jpg") no-repeat center center;
	background-size: cover;
	animation: bgBreath 22s ease-in-out infinite;
	transform: scale(1);
	transform-origin: center center;
	z-index: 0;
	pointer-events: none;
}

body::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(8, 12, 15, 0.12), rgba(18, 24, 29, 0.06)),
		radial-gradient(circle at 70% 30%, rgba(90, 130, 150, 0.04), transparent 35%);
	z-index: 1;
	pointer-events: none;
}

@keyframes bgBreath {
	0% {
		transform: scale(1) translate(0, 0);
	}

	25% {
		transform: scale(1.03) translate(-0.3%, -0.3%);
	}

	50% {
		transform: scale(1.06) translate(0.3%, -0.6%);
	}

	75% {
		transform: scale(1.03) translate(0.2%, 0.2%);
	}

	100% {
		transform: scale(1) translate(0, 0);
	}
}

.left_logo {
	position: absolute;
	width: 200px;
	left: 10px;
	top: 10px;
}

.login {
	position: relative;
	width: 100%;
	height: 100%;
}

.box {
	width: 400px;
	height: 330px;
	background: rgba(25, 25, 25, 0.5);
	position: absolute;
	top: 50%;
	left: 20%;
	margin: -194px 0 0 -220px;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
	color: #fff;
	border-radius: 5%;
}

@property --angle {
	syntax: "<angle>";
	inherits: false;
	initial-value: 0deg;
}

.box::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 2px;
	background: conic-gradient(from var(--angle),
			transparent 0deg,
			transparent 338deg,
			#5b6770 345deg,
			#0092bc 352deg,
			#4c9f70 356deg,
			#ffcd00 360deg);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
	animation: borderRun 11s linear infinite;
}

.box::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 2px;
	background: conic-gradient(from var(--angle),
		transparent 0deg,
		transparent 338deg,
		#5b6770 345deg,
		#0092bc 352deg,
		#4c9f70 356deg,
		#ffcd00 360deg);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 1;
	filter: blur(3px);
	animation: borderRun 11s linear infinite;
}

@keyframes borderRun {
	from {
		--angle: 0deg;
	}

	to {
		--angle: 360deg;
	}
}

.box h1 {
	font-size: 20px;
	padding-top: 60px;
	padding-bottom: 40px;
}

.box .layui-form-item {
	width: 260px;
	margin: auto;
	font-size: 16px;
	margin-top: 20px;
	text-align: center;
	/*font-weight: bold;*/
}

.box .layui-form-label {
	width: 60px;
	text-align: left;
	padding: 0;
	line-height: 28px;
}

.box .layui-input-block {
	margin-left: 0 !important;
}

.box .layui-input {
	display: flex;
	background: rgba(229, 242, 250, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #313536;
	height: 40px;
	line-height: 40px;
	border-radius: 8px;
	text-align: center;
	font-size: 16px;
	transition: all 0.25s ease;
}

.box .layui-input:focus {
	border-color: #7fd6ff;
	box-shadow: 0 0 12px rgba(127, 214, 255, 0.35);
	font-size: 16px;
}

.box .layui-input:focus {
	border-color: #A5C2F9;
	font-size: 16px;
}

.box .layui-btn {
	cursor: pointer;
	margin-top: 5px;
	line-height: 20px;
	position: relative;
	font-size: 16px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	border: 2px solid rgba(255, 255, 255, 0.18);
	border-radius: 22px;
	transition: .35s;
	font-weight: bold;
	width: 200px;
	height: 38px;
	overflow: hidden;
}

.box .layui-btn:hover {
	z-index: 1;
	border-color: transparent;
	background: linear-gradient(90deg,
			#f9d923,
			#00a19d,
			#0c87b7,
			#cb49ff,
			#ff6666,
			#f9d923);
	background-size: 400%;
	box-shadow: 0 0 15px rgb(2, 4, 24);
	animation: glow 12s linear forwards;
}

@keyframes glow {

	from {
		background-position: 0%;
	}

	to {
		background-position: 400%;
	}

}

.box .layui-btn::before {
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	background: inherit;
	filter: blur(36px);
	opacity: 0;
	transition: .4s ease-out;
}

.box .layui-btn:hover::before {
	opacity: 1;
	z-index: -1;
}

.trace_logo {
	display: block;
	width: 240px;
	margin: 30px auto;
}

.layui-footer {
	position: fixed;
	bottom: 0;
	right: 0;
	background-color: rgba(1, 1, 1, 0);
	color: #5b6770;
	padding: 10px;
	text-align: right;
	z-index: 999;
	/* ȷ��ҳ������ǰ����ʾ */
}

.pass-wrap {
	position: relative;
}

.pass-wrap .layui-input {
	padding-left: 36px;
	padding-right: 36px;
	box-sizing: border-box;
	text-align: center;
}

.toggle-pass {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	user-select: none;
	color: #7f8a90;
	transition: color .2s ease, opacity .2s ease, transform .2s ease;
	opacity: 0.88;
}

.toggle-pass:hover {
	color: #9fb3bd;
	opacity: 1;
}

.toggle-pass:active {
	transform: translateY(-50%) scale(0.96);
}

.toggle-pass svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
	display: block;
}

.toggle-pass .icon-hide {
	display: none;
}

.toggle-pass.is-showing .icon-show {
	display: none;
}

.toggle-pass.is-showing .icon-hide {
	display: block;
}