:root {
	--main-color: #63aee6;

	--model-background-color: #4a96d2;
	--model-border-color: #a9d3f3;
	
	--textBox-color: #e4f3fe;
	--textBox-color-focus: #c8e3fa;
	--textBox-pic-color: var(--main-color);

	--btn-color: var(--main-color);
	--modal-title-color: var(--main-color);
}

.login-container {
	display: flex;
	height: 100vh;
	width: 100vw;
	position: relative;
}

.left-block {
	position: relative;
	width: 40%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--model-border-color);
	clip-path: polygon(0 0, 95% 0%, 50% 100%, 0% 100%);
}
.left-block::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--model-background-color);
	clip-path: polygon(0 0, 92% 0%, 47% 100%, 0% 100%);
}
.model-name{
	margin-right: 30%;
	margin-bottom: 8%;
	position: relative;
	z-index: 1;
}

.center-block {
	flex-grow: 1;
	position: relative;
	overflow: hidden;
}
.main-position {
	position: absolute;
	min-width: 420px;
	min-height: 420px;
	top: 32%;
	left: 8%;
	transition: 0.4s;
	opacity: 1;
	visibility: visible;
}
.left-position {
	position: absolute;
	min-width: 420px;
	min-height: 420px;
	top: 32%;
	left: -60%;
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
}
.right-position {
	position: absolute;
	min-width: 420px;
	min-height: 420px;
	top: 32%;
	left: 120%;
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
}
.page-content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.sub-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.header-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.header-group > * {
	margin: 0;
}
.header-group h2 {
	font-size: 32px;
	color: #474747;
	font-weight: 400;
}
.header-group h2[onclick] {
	cursor: pointer;
	user-select: none;
}
.user-acct {
	font-size: 20px;
	color: #686868;
	margin-left: 25px;
}
.header-group i {
	color: #000000;
}
.back-arrow {
	position: relative;
	border: solid #000;
	border-width: 0 0 4px 4px;
	display: inline-block;
	padding: 5px;
	bottom: 1px;
	transform: rotate(45deg);
}

.textBox {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	max-width: 410px;
	height: 68px;
	background-color: var(--textBox-color);
	border: 1px solid var(--textBox-color);
	border-radius: 12px;
	padding: 0 15px;
	transition: 0.3s;
}
.textBox i {
	color: var(--textBox-pic-color);
	font-size: 24px;
	margin-right: 15px;
	transform: translateY(-2px);
}
.textBox input {
	flex: 1;
	height: 100%;
	border: none;
	background: transparent;
	outline: none;
	font-size: large;
	color: #5e5e5e;
	padding: 0;
}
.textBox:focus-within {
	background-color: var(--textBox-color-focus);
	color: #4e4e4e;
}
.textBox input::placeholder {
	color: #bdbdbd;
}
.textBox input:focus::placeholder {
	color: transparent;
}

.setting-group {
	display: grid;
	grid-template-columns: auto 1fr; 
	gap: 16px 24px;
	align-items: center;
}
.setting-group label {
	font-size: 18px;
	white-space: nowrap;
}
#label_key {
	font-size: 14px;
}
.setting-group label img {
	margin-left: 6px;
	vertical-align: middle;
}
.setting-group input {
	width: 95%;
	padding: 10px;
	box-sizing: border-box;
}
.setting-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
	transform: translateY(-1px);
}
.setting-group__row {
	display: contents;
}
.setting-group__row div {
  display: flex;
  align-items: center;
	padding-left: 5px;
	gap: 6px;
}
.setting-group__row div span {
  display: flex;
  align-items: center;
	gap: 6px;
}


.btn-group {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.btn-group button {
	flex: 1;
}
.btn-group-center {
	display: flex;
	justify-content: center;
	gap: 50px;
}
.btn-group-center button {
	min-height: 36px;
}
.btn-login {
	position: relative;
	border: 1px solid var(--btn-color);
	background-color: var(--btn-color);
	border-radius: 12px;
	padding: 15px;
	outline: none;
	font-size: 16px;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
}
.btn-login.repush {
	border: 1px solid #afafaf;
	background-color: #ffffff;
	color: #474747;
}
.btn-login.repush:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	pointer-events: none;
}
.btn-login:hover {
	filter: brightness(0.9);
}
.btn-login.btn-icon-right i {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}

.btn-pwdType {
	padding: 20px;
	border: 1px solid #bbbbbb;
	border-radius: 12px;
	background-color: #fff;
	font-size: 18px;
	color: #686868;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 175;
	cursor: pointer;
}
.btn-pwdType:hover {
	border: 1px solid #8f8e8e;
}
.btn-pwdType > i {
	color: #000000;
}

.small-group {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	margin-top: -25px;
}
.small-group > span:last-child {
	margin-left: auto;
}
.small-group span {
	font-size: 17px;
	color: #5e5e5e;
	cursor: pointer;
}
.small-text {
	font-size: 15px;
	color: #7e7e7e;
	text-decoration: underline;
}

.tip-group {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
	padding: 8px 15px;
	font-size: 18px;
	line-height: 35px;
	border-left: 10px solid #c1e1f8;
	max-width: 420px;
}
.info-group {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 8px 15px;
	font-size: 16px;
	border: 1px solid #d7edfd;
	background-color: #f4faff;
}

#identifier {
	font-size: 20px;
	font-weight: bold;
	color: #000000;
}
#verification {
	font-size: 20px;
	font-weight: bold;
	color: #0090fe;
}

.qr-div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
	padding: 12px;
	border-radius: 8px;
	background-color: #fff;
	cursor: pointer;
	user-select: none;
}
.qr-div img {
	width: 140px;
	height:140px;
	object-fit: contain;
	display: block;
}
.qr-div div {
	font-size: 14px;
	color: #007bff;
}
.qr-div:hover div {
	font-weight: bold;
}
#passwordless_qr_pic,
#bind_passwordless_qr_pic {
	width: 200px;
	height:200px;
}

.lang-select {
	position: absolute;
	top: 35px;
	right: 35px;
	width: 125px;
	font-size: 16px;
	color:#5E5E5E;
	cursor: pointer;
	transition: 0.1s;
}
.lang-arrow {
	border-top: 6px solid #5E5E5E;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	display: inline-block;
	margin-left: 5px;
}
.lang-dropdown {
	position: relative;
	top: -10px;
	right: 15px;
	width: 105%;
	border-radius: 10px;
	background-color: #ffffff;
	box-shadow: 0 0 10px 0 #E0DADA;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.1s;
}
.lang-dropdown li {
	list-style: none;
	border-radius: 6px;
	padding: 10px 0 10px 20px;
}
.lang-dropdown li:hover {
	background: #E6FAFF;
}
.show-option {
	top: 5px;
	opacity: 1;
	visibility: visible;
	transition: 0.5s;
}

.login-modal {
	z-index: 1001;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	overflow: auto;
	display: none;
}
.login-modal-content {
	position: relative;
	width: fit-content;
	background-color: #ffffff;
	border-radius: 15px;
	margin: 10% auto;
}
.login-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 30px;
	font-weight: bold;
	color: #ccccdd;
}
.login-modal-close:hover {
	color: #b0b0b9;
	cursor: pointer;
}
.login-modal-header {
	padding: 18px;
	font-size: 20px;
	color: var(--modal-title-color);
}
.warn-pic {
	position: relative;
	margin: 10px 150px 0 150px;
	background-color: #fcd9d9;
	border-radius: 50%;
	text-align: center;
	color: #ff0000;
	padding: 25px 20px 20px 20px;

}
.login-modal-body {
	padding: 20px 80px 50px 90px;
	font-size: 18px;
	text-align: center;
}
.my-show-modal {
	-webkit-animation: animatezoom 0.3s;
	animation: animatezoom 0.3s
}
@-webkit-keyframes animatezoom {
	from {-webkit-transform: scale(0)} 
	to {-webkit-transform: scale(1)}
} 
@keyframes animatezoom {
	from {transform: scale(0)} 
	to {transform: scale(1)}
}

@media (max-width: 768px) {
	.login-container {
		flex-direction: column;
	}
	.left-block {
		width: 100%;
		height: 200px;
		clip-path: polygon(0 0, 100% 0%, 100% 80%, 0% 100%);
	}
	.left-block::after {
		clip-path: polygon(0 0, 100% 0%, 100% 70%, 0% 90%);
	}
	.model-name{
		margin: -30px 0 0 0;
	}
	.main-position {
		top: 5%;
		left: 50%;
		transform: translateX(-50%);
	}
	.left-position,
	.right-position {
		top: 5%;
	}
	.lang-select {
		top: 15px;
		right: 5px;
	}
}