html,
body{
	height: 100%;
}

.login-page {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.layui-row {
	width: 1000px;
	height: 600px;
	box-shadow: 2px 0 6px rgba(0, 21, 41, .20);
	border: 3px solid whitesmoke;
	border-radius: 15px;
}

.login-bg {
	height: 100%;
	box-sizing: border-box;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-bottom-left-radius: 15px;
	border-top-left-radius: 15px;
}

.login-form {
	height: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-bottom-right-radius: 15px;
	border-top-right-radius: 15px;
}

.form-center {
	background: #fff;
	box-sizing: border-box;
	flex-flow: row wrap;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.form-center-box {
	width: 360px;
}

.login-mascot-stage {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	padding: 24px 28px;
	display: flex;
	align-items: flex-end;
}

.login-mascot-crowd {
	position: relative;
	width: 100%;
	height: 44%;
}

.login-mascot-crowd::before {
	content: "";
	position: absolute;
	left: 4%;
	right: 4%;
	bottom: 0;
	height: 16px;
	border-radius: 999px;
	background: rgba(88, 103, 142, .16);
	filter: blur(1px);
}

.login-mascot {
	--left: 0%;
	--bottom: 0%;
	--scale: 1;
	--tilt: 0deg;
	--z: 1;
	--float-delay: 0s;
	--mascot-skin: #ffd9ba;
	--mascot-outline: #dca37e;
	--mascot-body: #6da2ff;
	position: absolute;
	left: var(--left);
	bottom: var(--bottom);
	z-index: var(--z);
	transform: scale(var(--scale)) rotate(var(--tilt));
	transform-origin: center bottom;
}

.login-mascot-actor {
	position: relative;
	width: 50px;
	height: 104px;
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: mascot-float 3.2s ease-in-out infinite;
	animation-delay: var(--float-delay);
	transition: transform .25s ease;
}

.login-mascot-head {
	width: 38px;
	height: 35px;
	position: relative;
	z-index: 4;
	background: var(--mascot-skin);
	border: 2px solid var(--mascot-outline);
	border-radius: 50% 50% 46% 46%;
	transition: transform .25s ease;
}

.login-mascot-eyes {
	width: 25px;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: opacity .18s ease;
}

.login-mascot-eye {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1.5px solid #2c3a4b;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.login-mascot-pupil {
	width: 3.8px;
	height: 3.8px;
	border-radius: 50%;
	background: #2c3a4b;
	transform: translate(0, 0);
	transition: transform .08s linear, opacity .12s ease;
	will-change: transform;
}

.login-mascot-neck {
	width: 10px;
	height: 8px;
	margin-top: -2px;
	background: var(--mascot-skin);
	border-left: 2px solid var(--mascot-outline);
	border-right: 2px solid var(--mascot-outline);
	transition: height .22s ease;
}

.login-mascot-body {
	width: 34px;
	height: 42px;
	margin-top: -1px;
	position: relative;
	z-index: 3;
	border-radius: 12px 12px 14px 14px;
	background: var(--mascot-body);
	border: 2px solid rgba(28, 41, 68, .16);
	transition: transform .22s ease;
}

.login-mascot-hand {
	position: absolute;
	top: 44px;
	width: 11px;
	height: 31px;
	border-radius: 999px;
	background: var(--mascot-skin);
	border: 2px solid var(--mascot-outline);
	z-index: 5;
	transform-origin: center top;
	box-shadow: 0 1px 0 rgba(153, 102, 74, .08);
	transition: transform .28s ease, border-radius .2s ease;
}

.login-mascot-hand--left {
	left: -6px;
	transform: translate(0, 0) rotate(7deg);
}

.login-mascot-hand--right {
	right: -6px;
	transform: translate(0, 0) rotate(-7deg);
}

.login-mascot--shape-square .login-mascot-head {
	border-radius: 45% 45% 36% 36%;
	height: 33px;
}

.login-mascot--shape-square .login-mascot-eye {
	border-radius: 42%;
}

.login-mascot--shape-tall .login-mascot-head {
	height: 38px;
	border-radius: 48% 48% 44% 44%;
}

.login-mascot--shape-tall .login-mascot-neck {
	height: 10px;
}

.login-mascot--shape-tall .login-mascot-body {
	height: 46px;
	border-radius: 12px 12px 14px 14px;
}

.login-mascot--tie .login-mascot-body::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 8px solid #f7fbff;
}

.login-mascot--tie .login-mascot-body::after {
	content: "";
	position: absolute;
	top: 15px;
	left: 50%;
	width: 5px;
	height: 14px;
	transform: translateX(-50%);
	background: #f7fbff;
	border-radius: 0 0 2px 2px;
}

.login-mascot--badge .login-mascot-body::after {
	content: "";
	position: absolute;
	top: 6px;
	right: 6px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	border: 1.5px solid rgba(255, 255, 255, .52);
}

.login-mascot--glasses .login-mascot-eye {
	box-shadow: none;
}

.login-mascot--glasses .login-mascot-eyes::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 5px;
	width: 8px;
	height: 1.5px;
	background: #2c3a4b;
	transform: translateX(-50%);
	opacity: .82;
}

.login-mascot-crowd[data-mode="watch"] .login-mascot-actor,
.login-mascot-crowd[data-mode="cover"] .login-mascot-actor {
	animation: none;
}

.login-mascot-crowd[data-mode="watch"] .login-mascot-actor {
	transform: translateY(-7px);
}

.login-mascot-crowd[data-mode="cover"] .login-mascot-actor {
	transform: translateY(-4px);
}

.login-mascot-crowd[data-mode="watch"] .login-mascot-head {
	transform: translateY(2px) scale(1.04);
}

.login-mascot-crowd[data-mode="watch"] .login-mascot-neck {
	height: 15px;
}

.login-mascot-crowd[data-mode="watch"] .login-mascot-body {
	transform: translateY(3px);
}

.login-mascot-crowd[data-mode="cover"] .login-mascot-hand--left {
	transform: translate(9px, -29px) rotate(-52deg);
	border-radius: 10px;
}

.login-mascot-crowd[data-mode="cover"] .login-mascot-hand--right {
	transform: translate(-9px, -29px) rotate(52deg);
	border-radius: 10px;
}

.login-mascot-crowd[data-mode="cover"] .login-mascot-eyes {
	opacity: .24;
}

.login-mascot-crowd[data-mode="cover"] .login-mascot-pupil {
	opacity: 0;
}

@keyframes mascot-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-3px);
	}
}

.top-log-title {
	align-items: center;
	justify-content: center;
	display: flex;
	margin-bottom: 30px;
}

.top-log {
	width: 50px;
	border-radius: 12px;
	margin-right: 20px;
	height: 50px;
}

.top-log-title span {
	font-size: 32px;
	font-weight: 700;
	color: var(--global-primary-color);
}

.top-desc {
	font-size: 14px;
	color: #808695;

}

.tab-log-method {
	width: 100%;
	display: flex;
	padding: 20px 0px;
}

.tab-log-method-item {
	flex: 1;
	box-sizing: border-box;
	padding: 5px 50px;
	text-align: right;
	color: #1f2225;
	font-size: 16px;
}

.tab-log-method-item:nth-child(2) {
	text-align: left;
}

.tab-log-method-item>span {
	display: inline-block;
	width: 40px;
	text-align: center;
	height: 30px;
	border-bottom: 2px solid transparent;
}

.tab-log-method-item>span:hover {
	cursor: pointer;
	color: #16baaa;
	border-bottom: 2px solid #16baaa;
}

.tab-log-verification {
	width: 100%;
	display: flex;
}

.verification-text {
	flex: 2;
	box-sizing: border-box;
	margin-right: 20px;
}

.verification-img {
	flex: 1;
	box-sizing: border-box;
	border: 1px solid #eeeeee;
	border-radius: 4px;
	height: 40px;
	overflow: hidden;
	text-align: center;
}

.remember-passsword {
	margin: 20px 0;
	width: 100%;
	display: flex;
	box-sizing: border-box;
}

.remember-cehcked {
	flex: 1;
	text-align: left;
}

.greenText {
	color: #16baaa;
	cursor: pointer;
}


.login-btn {
	width: 100%;
	box-sizing: border-box;
}

.login-btn>.layui-btn {
	width: 100%;
}

.other-login {
	width: 100%;
	box-sizing: border-box;
	margin: 20px 0 0;
	text-align: left;
	display: flex;
}

.other-login-methods {
	display: inline-block;
	flex: 1;
}

.layui-input {
	border-radius: 4px;
	line-height: 40px;
	height: 40px;
}

.layui-btn {
	border-radius: 4px;
	background-color: var(--global-primary-color);
}

@media(min-width: 992px) and  (max-width:1200px){
	.layui-row{
		width: 900px;
	}
}
@media(min-width: 768px) and (max-width:992px){
	.layui-row{
		width: 90%;
	}
	.form-center{width: 90%;}
	.login-mascot-crowd {
		height: 40%;
		transform: scale(.87);
		transform-origin: left bottom;
	}
}
@media (max-width:768px){
	.layui-row{
		width: 90%;
	}
	.login-form {
		border-bottom-left-radius: 15px;
		border-top-left-radius: 15px;
	}
	.form-center-box{width: 95%;}
	.login-mascot-stage {
		display: none;
	}
}
