:root {
	--login-bg: #090b0c;
	--login-surface: #151819;
	--login-surface-hover: #191d1e;
	--login-border: #303536;
	--login-text: #f7f7f5;
	--login-muted: #8d9293;
	--login-orange: #ff5a0a;
	--login-orange-hover: #ff6d1d;
	--login-lime: #82c91e;
	--login-danger: #ff6b5e;
}

html,
body.account-page-growth {
	min-height: 100%;
	background: var(--login-bg);
}

body.account-page-growth {
	margin: 0;
	overflow-x: hidden;
	color: var(--login-text);
	font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

.account-page-growth .main-wrapper,
.account-page-growth .account-content {
	min-height: 100vh;
	min-height: 100svh;
}

.account-page-growth .login-growth-shell {
	box-sizing: border-box;
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 62fr) minmax(420px, 38fr);
	grid-template-rows: auto minmax(0, 1fr) auto;
	width: 100%;
	height: auto;
	min-height: 100vh;
	min-height: 100svh;
	padding: 48px 64px 34px;
	overflow: hidden;
	background-color: var(--login-bg);
	background-image: url("../picture/login-network-desktop.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.login-growth-brand {
	grid-column: 1;
	grid-row: 1;
	z-index: 1;
}

.login-growth-brand img {
	display: block;
	width: 180px;
	height: 50px;
	object-fit: contain;
}

.login-growth-intro {
	grid-column: 1;
	grid-row: 2;
	align-self: end;
	z-index: 1;
	max-width: 650px;
	padding: 0 0 clamp(62px, 8vh, 100px);
}

.login-growth-eyebrow {
	margin: 0 0 22px;
	color: var(--login-orange);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.28em;
}

.login-growth-intro h1 {
	margin: 0;
	color: var(--login-text);
	font-size: clamp(44px, 4.1vw, 60px);
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -0.035em;
}

.login-growth-subtitle {
	margin: 20px 0 0;
	color: var(--login-muted);
	font-size: 21px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.14em;
}

.login-growth-features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 28px);
	width: min(100%, 620px);
	margin: 36px 0 0;
	padding: 0;
	list-style: none;
}

.login-growth-feature {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	color: var(--login-text);
}

.login-growth-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
}

.login-growth-feature-icon > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 0 8px rgba(255, 90, 10, 0.24));
}

.login-growth-feature-label {
	color: #c9cdce;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.06em;
	white-space: nowrap;
}

.login-growth-form-region {
	box-sizing: border-box;
	display: flex;
	grid-column: 2;
	grid-row: 1 / 4;
	align-items: center;
	justify-content: flex-end;
	z-index: 2;
	width: 100%;
	padding-left: clamp(36px, 5vw, 84px);
}

.login-growth-form {
	width: min(100%, 460px);
}

.login-growth-tip {
	display: none;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 22px;
	padding: 12px 14px;
	border: 1px solid rgba(145, 158, 171, 0.32);
	border-radius: 8px;
	background-color: rgba(145, 158, 171, 0.08);
	color: #c4c8c9;
	font-size: 14px;
	line-height: 1.5;
}

.login-growth-tip.is-visible {
	display: flex;
	animation: login-growth-tip-in 180ms ease-out both;
}

.login-growth-tip.is-error {
	border-color: rgba(255, 107, 94, 0.55);
	background-color: rgba(255, 107, 94, 0.09);
	color: #ffaaa1;
}

.login-growth-tip.is-success {
	border-color: rgba(130, 201, 30, 0.55);
	background-color: rgba(130, 201, 30, 0.09);
	color: #b9e879;
}

.login-growth-tip.is-loading {
	border-color: rgba(255, 90, 10, 0.48);
	background-color: rgba(255, 90, 10, 0.08);
	color: #ffc09a;
}

.login-growth-tip-icon {
	flex: 0 0 auto;
	margin-top: 3px;
	font-size: 15px;
}

.login-growth-tip-message {
	min-width: 0;
}

@keyframes login-growth-tip-in {
	from {
		opacity: 0;
		transform: translate3d(0, -4px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.login-growth-field {
	margin: 0 0 30px;
}

.login-growth-field label {
	display: block;
	margin: 0 0 12px;
	color: var(--login-text);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.login-growth-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
	height: 64px;
	border: 1px solid var(--login-border);
	border-bottom-color: var(--login-orange);
	border-radius: 8px 8px 2px 2px;
	background-color: var(--login-surface);
	transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.login-growth-input-wrap:hover {
	border-color: #414748;
	border-bottom-color: var(--login-orange);
	background-color: var(--login-surface-hover);
}

.login-growth-input-wrap:focus-within {
	border-color: var(--login-orange);
	background-color: #171b1c;
	box-shadow: 0 0 0 3px rgba(255, 90, 10, 0.16);
}

.login-growth-input-icon {
	position: absolute;
	left: 18px;
	color: #73797a;
	font-size: 15px;
	pointer-events: none;
}

.account-page-growth .login-growth-input-wrap input {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: 0 54px 0 48px;
	border: 0;
	border-radius: inherit;
	outline: 0;
	background: transparent;
	color: var(--login-text);
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	caret-color: var(--login-orange);
}

.account-page-growth .login-growth-input-wrap input::placeholder {
	color: #737879;
	opacity: 1;
}

.account-page-growth .login-growth-input-wrap input:-webkit-autofill,
.account-page-growth .login-growth-input-wrap input:-webkit-autofill:hover,
.account-page-growth .login-growth-input-wrap input:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--login-text);
	box-shadow: 0 0 0 1000px var(--login-surface) inset;
	transition: background-color 9999s ease-in-out 0s;
}

.account-page-growth .login-growth-input-wrap .toggle-password {
	position: absolute;
	top: 50%;
	right: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	outline: 0;
	background: transparent;
	color: #a1a6a7;
	font-family: "Font Awesome 5 Free";
	font-size: 17px;
	font-weight: 900;
	cursor: pointer;
	transform: translateY(-50%);
	transition: color 160ms ease, background-color 160ms ease;
}

.account-page-growth .login-growth-input-wrap .toggle-password:hover {
	background-color: #222627;
	color: var(--login-text);
}

.account-page-growth .login-growth-input-wrap .toggle-password:focus-visible {
	box-shadow: 0 0 0 2px var(--login-orange);
}

.account-page-growth .login-growth-submit.btn-login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 64px;
	margin: 6px 0 0;
	padding: 0 24px;
	border: 1px solid var(--login-orange);
	border-radius: 10px;
	background: var(--login-orange);
	box-shadow: none;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.account-page-growth .login-growth-submit.btn-login:hover {
	border-color: var(--login-orange-hover);
	background: var(--login-orange-hover);
	box-shadow: none !important;
	color: #fff;
}

.account-page-growth .login-growth-submit.btn-login:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.82);
	outline-offset: 3px;
}

.account-page-growth .login-growth-submit.btn-login:active {
	transform: translateY(1px);
}

.account-page-growth .login-growth-submit.btn-login:disabled {
	border-color: #b54512;
	background: #b54512;
	color: rgba(255, 255, 255, 0.82);
	cursor: wait;
	transform: none;
}

.login-growth-security {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 20px 0 0;
	color: #838889;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}

.login-growth-security .fa-shield-alt {
	color: var(--login-lime);
	font-size: 16px;
}

.login-growth-footer {
	grid-column: 2;
	grid-row: 3;
	justify-self: end;
	z-index: 1;
	color: #6f7475;
	font-size: 13px;
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.login-growth-footer-link {
	margin-left: 0.18em;
	color: #8e9495;
	text-decoration-line: underline;
	text-decoration-style: wavy;
	text-decoration-color: var(--login-orange);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition: color 160ms ease;
}

.login-growth-footer-link:hover {
	color: var(--login-text);
	text-decoration-color: var(--login-orange-hover);
}

.login-growth-footer-link:focus-visible {
	border-radius: 2px;
	outline: 2px solid var(--login-orange);
	outline-offset: 4px;
}

@media (max-width: 1100px) {
	.account-page-growth .login-growth-shell {
		grid-template-columns: minmax(0, 56fr) minmax(400px, 44fr);
		padding-right: 44px;
		padding-left: 44px;
	}

	.login-growth-intro h1 {
		font-size: 44px;
	}

	.login-growth-form-region {
		padding-left: 34px;
	}
}

@media (max-width: 900px) {
	body.account-page-growth {
		overflow-y: auto;
	}

	.account-page-growth .login-growth-shell {
		display: block;
		min-height: 100vh;
		min-height: 100svh;
		padding: 24px 22px 22px;
		overflow: visible;
		background-image: url("../picture/login-network-mobile.png");
		background-repeat: no-repeat;
		background-position: top center;
		background-size: 100% auto;
	}

	.login-growth-brand,
	.login-growth-intro,
	.login-growth-form-region,
	.login-growth-footer {
		width: min(100%, 520px);
		margin-right: auto;
		margin-left: auto;
	}

	.login-growth-brand img {
		width: 170px;
		height: auto;
	}

	.login-growth-intro {
		max-width: none;
		margin-top: clamp(176px, 25vh, 220px);
		padding: 0;
	}

	.login-growth-eyebrow {
		margin-bottom: 16px;
		font-size: 12px;
		letter-spacing: 0.24em;
	}

	.login-growth-intro h1 {
		font-size: clamp(34px, 9.4vw, 42px);
		line-height: 1.18;
		letter-spacing: -0.04em;
	}

	.login-growth-subtitle {
		margin-top: 14px;
		font-size: 17px;
		line-height: 1.55;
		letter-spacing: 0.1em;
	}

	.login-growth-features {
		gap: 10px;
		width: 100%;
		margin-top: 28px;
	}

	.login-growth-feature {
		align-items: center;
		gap: 8px;
		text-align: center;
	}

	.login-growth-feature-icon {
		width: 44px;
		height: 44px;
	}

	.login-growth-feature-label {
		font-size: 12px;
		letter-spacing: 0.04em;
	}

	.login-growth-form-region {
		display: block;
		padding: 0;
		margin-top: 36px;
	}

	.login-growth-form {
		width: 100%;
	}

	.login-growth-field {
		margin-bottom: 24px;
	}

	.login-growth-field label {
		margin-bottom: 10px;
		font-size: 15px;
	}

	.login-growth-input-wrap,
	.account-page-growth .login-growth-submit.btn-login {
		height: 56px;
	}

	.account-page-growth .login-growth-submit.btn-login {
		margin-top: 2px;
		font-size: 17px;
	}

	.login-growth-security {
		gap: 8px;
		margin-top: 16px;
		font-size: 13px;
	}

	.login-growth-footer {
		margin-top: 72px;
		text-align: center;
	}
}

@media (max-width: 420px) {
	.account-page-growth .login-growth-shell {
		padding-right: 20px;
		padding-left: 20px;
	}

	.login-growth-brand img {
		width: 160px;
	}

	.login-growth-intro {
		margin-top: clamp(168px, 23vh, 198px);
	}

	.login-growth-intro h1 {
		font-size: 36px;
	}

	.login-growth-subtitle {
		font-size: 16px;
	}

	.login-growth-features {
		gap: 6px;
		margin-top: 24px;
	}

	.login-growth-feature-icon {
		width: 40px;
		height: 40px;
	}

	.login-growth-feature-label {
		font-size: 11px;
		letter-spacing: 0;
	}

	.login-growth-security {
		font-size: 12px;
	}
}

@media (max-height: 760px) and (min-width: 901px) {
	.account-page-growth .login-growth-shell {
		padding-top: 32px;
		padding-bottom: 26px;
	}

	.login-growth-intro {
		padding-bottom: 36px;
	}

	.login-growth-field {
		margin-bottom: 22px;
	}

	.login-growth-input-wrap,
	.account-page-growth .login-growth-submit.btn-login {
		height: 56px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.login-growth-tip.is-visible,
	.login-growth-input-wrap,
	.account-page-growth .login-growth-input-wrap .toggle-password,
	.account-page-growth .login-growth-submit.btn-login {
		transition: none;
		animation: none;
	}
}
