/* Login page styles are intentionally scoped to the standalone Discuz member login route. */
:root {
	--ygw-login-bg: #00010c;
	--ygw-login-panel: rgba(13, 21, 39, .76);
	--ygw-login-panel-strong: rgba(14, 24, 44, .9);
	--ygw-login-line: rgba(137, 181, 255, .18);
	--ygw-login-text: #f5f8ff;
	--ygw-login-muted: #8996ad;
	--ygw-login-cyan: #00dfff;
	--ygw-login-blue: #5977ff;
	--ygw-login-purple: #9d6cff;
}

body#nv_member.pg_logging {
	background: var(--ygw-login-bg) !important;
}

.ygw-login-page.ygw-auth-page {
	isolation: isolate;
	min-height: 100svh;
	padding: 0 32px;
	box-sizing: border-box;
	background:
		radial-gradient(circle at 4% 18%, rgba(0, 190, 255, .22), transparent 22rem),
		radial-gradient(circle at 88% 78%, rgba(104, 75, 255, .23), transparent 26rem),
		radial-gradient(circle at 53% 43%, rgba(0, 220, 255, .07), transparent 35rem),
		linear-gradient(135deg, #020516 0%, #07162c 42%, #060814 100%);
	overflow: hidden;
}

.ygw-login-page.ygw-auth-page::before,
.ygw-login-page.ygw-auth-page::after,
.ygw-login-page .ygw-auth-orb,
.ygw-login-page .ygw-auth-orb-small,
.ygw-login-page .ygw-auth-logo {
	display: none;
}

.ygw-login-page::before {
	display: block !important;
	z-index: -3;
	inset: 0;
	width: auto;
	height: auto;
	border-radius: 0;
	transform: none;
	opacity: 1;
	background-image:
		linear-gradient(rgba(103, 141, 208, .055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(103, 141, 208, .045) 1px, transparent 1px);
	background-size: 42px 42px;
	box-shadow: none;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, .85), transparent 86%);
}

.ygw-login-page::after {
	display: block !important;
	z-index: -2;
	left: 42%;
	top: 11%;
	width: 26rem;
	height: 26rem;
	border-radius: 50%;
	transform: none;
	opacity: .7;
	background: radial-gradient(circle, rgba(13, 179, 255, .18), rgba(23, 70, 175, .04) 47%, transparent 70%);
	box-shadow: none;
}

.ygw-login-atmosphere {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
}

.ygw-login-atmosphere span {
	position: absolute;
	display: block;
	border: 1px solid rgba(92, 175, 255, .17);
	border-radius: 50%;
	filter: blur(.1px);
}

.ygw-login-atmosphere span:nth-child(1) {
	left: -14rem;
	bottom: -19rem;
	width: 40rem;
	height: 40rem;
	box-shadow: inset 0 0 5rem rgba(16, 92, 255, .18), 0 0 7rem rgba(0, 196, 255, .1);
}

.ygw-login-atmosphere span:nth-child(2) {
	right: -12rem;
	top: -13rem;
	width: 35rem;
	height: 35rem;
	border-color: rgba(167, 95, 255, .18);
	box-shadow: inset 0 0 6rem rgba(133, 89, 255, .15);
}

.ygw-login-atmosphere span:nth-child(3) {
	left: 46%;
	top: 24%;
	width: 12rem;
	height: 12rem;
	border-color: rgba(0, 225, 255, .13);
	box-shadow: 0 0 4rem rgba(0, 202, 255, .09);
	animation: ygw-login-orbit 10s ease-in-out infinite;
}

.ygw-login-header {
	position: relative;
	z-index: 3;
	width: min(1400px, 100%);
	height: 88px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(145, 181, 255, .1);
}

.ygw-login-brand,
.ygw-login-home-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ygw-login-text) !important;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .13em;
}

.ygw-login-brand:hover,
.ygw-login-home-link:hover {
	color: #fff !important;
}

.ygw-login-brand-mark {
	width: 27px;
	height: 27px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3px;
	padding: 5px;
	box-sizing: border-box;
	border: 1px solid rgba(105, 225, 255, .72);
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(0, 225, 255, .24), rgba(103, 91, 255, .35));
	box-shadow: 0 0 18px rgba(0, 222, 255, .28);
}

.ygw-login-brand-mark i {
	border-radius: 50%;
	background: #bcfaff;
}

.ygw-login-brand-mark i:nth-child(2) { opacity: .68; }
.ygw-login-brand-mark i:nth-child(3) { opacity: .4; }

.ygw-login-home-link {
	gap: 7px;
	font-weight: 600;
	letter-spacing: 0;
	color: #a8bbd7 !important;
}

.ygw-login-home-link span {
	font-size: 20px;
	line-height: 1;
	color: var(--ygw-login-cyan);
}

.ygw-login-layout {
	position: relative;
	z-index: 1;
	width: min(1400px, 100%);
	min-height: calc(100svh - 150px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(400px, .84fr);
	gap: clamp(50px, 8vw, 150px);
	align-items: center;
	padding: 36px 0 46px;
	box-sizing: border-box;
}

.ygw-login-showcase {
	max-width: 790px;
	padding: 18px 0;
}

.ygw-login-eyebrow,
.ygw-login-section-heading p {
	margin: 0 0 12px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .19em;
	color: var(--ygw-login-cyan);
}

.ygw-login-showcase h1 {
	max-width: 720px;
	margin: 0;
	font-size: clamp(40px, 4.4vw, 68px);
	line-height: 1.14;
	letter-spacing: -.055em;
	font-weight: 800;
	color: #f8fbff;
}

.ygw-login-showcase h1 span {
	background: linear-gradient(100deg, #75f5ff, #6792ff 58%, #c181ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.ygw-login-lead {
	max-width: 560px;
	margin: 20px 0 29px;
	font-size: 17px;
	line-height: 1.85;
	color: #9ba9c1;
}

.ygw-login-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 660px;
}

.ygw-login-stat {
	min-height: 82px;
	padding: 15px 17px;
	box-sizing: border-box;
	border: 1px solid rgba(126, 173, 255, .16);
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(28, 48, 80, .55), rgba(10, 17, 34, .58));
	box-shadow: inset 0 1px rgba(255, 255, 255, .04);
	backdrop-filter: blur(12px);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ygw-login-stat:hover {
	transform: translateY(-3px);
	border-color: rgba(41, 224, 255, .46);
	box-shadow: 0 15px 28px rgba(0, 12, 42, .25), inset 0 1px rgba(255, 255, 255, .08);
}

.ygw-login-stat strong,
.ygw-login-stat span {
	display: block;
}

.ygw-login-stat strong {
	font-size: 25px;
	line-height: 1.1;
	font-weight: 800;
	color: #f3f8ff;
}

.ygw-login-stat span {
	margin-top: 8px;
	font-size: 12px;
	color: #8c9bb5;
}

.ygw-login-featured {
	max-width: 760px;
	margin-top: 35px;
}

.ygw-login-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 14px;
}

.ygw-login-section-heading p {
	margin-bottom: 5px;
	font-size: 10px;
}

.ygw-login-section-heading h2 {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
	color: #ecf4ff;
}

.ygw-login-slider-controls {
	display: flex;
	gap: 8px;
}

.ygw-login-slider-controls button {
	width: 32px;
	height: 32px;
	border: 1px solid rgba(124, 174, 255, .2);
	border-radius: 9px;
	background: rgba(22, 39, 67, .62);
	color: #d8e8ff;
	font-size: 16px;
	cursor: pointer;
}

.ygw-login-slider-controls button:hover,
.ygw-login-slider-controls button:focus-visible {
	border-color: rgba(0, 223, 255, .72);
	background: rgba(0, 188, 255, .2);
	outline: none;
}

.ygw-login-work-viewport {
	overflow: hidden;
	border-radius: 15px;
	outline: none;
}

.ygw-login-work-viewport:focus-visible {
	box-shadow: 0 0 0 3px rgba(0, 223, 255, .35);
}

.ygw-login-work-track {
	display: flex;
	gap: 13px;
	transition: transform .38s cubic-bezier(.2, .7, .2, 1);
}

.ygw-login-work {
	position: relative;
	isolation: isolate;
	flex: 0 0 calc((100% - 26px) / 3);
	min-width: 0;
	height: 152px;
	overflow: hidden;
	border: 1px solid rgba(139, 180, 255, .17);
	border-radius: 15px;
	background: #101d35;
	color: #fff !important;
	box-shadow: 0 12px 28px rgba(0, 6, 25, .24);
}

.ygw-login-work img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease, filter .35s ease;
}

.ygw-login-work:hover img,
.ygw-login-work:focus-visible img {
	transform: scale(1.07);
	filter: saturate(1.14);
}

.ygw-login-work-shade {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(180deg, transparent 26%, rgba(2, 7, 19, .93) 100%);
}

.ygw-login-work-meta {
	position: absolute;
	z-index: 2;
	left: 12px;
	right: 12px;
	bottom: 10px;
}

.ygw-login-work-meta strong,
.ygw-login-work-meta small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ygw-login-work-meta strong { font-size: 13px; }
.ygw-login-work-meta small { margin-top: 5px; font-size: 10px; color: #b8c9e4; }

.ygw-login-slider-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 12px;
}

.ygw-login-slider-dots button {
	width: 6px;
	height: 6px;
	padding: 0;
	border: 0;
	border-radius: 99px;
	background: rgba(178, 206, 243, .32);
	cursor: pointer;
}

.ygw-login-slider-dots button.is-active {
	width: 20px;
	background: var(--ygw-login-cyan);
}

.ygw-login-work-empty,
.ygw-login-mission {
	border: 1px solid rgba(126, 173, 255, .16);
	background: rgba(13, 27, 52, .42);
	backdrop-filter: blur(12px);
}

.ygw-login-work-empty {
	min-height: 132px;
	display: grid;
	place-content: center;
	gap: 8px;
	border-radius: 15px;
	text-align: center;
	color: #8ea2c0;
}

.ygw-login-work-empty span { color: var(--ygw-login-cyan); font-size: 23px; }
.ygw-login-work-empty p { margin: 0; font-size: 13px; }

.ygw-login-mission {
	display: flex;
	gap: 11px;
	max-width: 720px;
	margin: 24px 0 0;
	padding: 15px 18px;
	border-radius: 14px;
	color: #91a1bc;
	font-size: 13px;
	line-height: 1.75;
}

.ygw-login-mission p { margin: 0; }
.ygw-login-mission-icon { color: var(--ygw-login-cyan); font-size: 17px; }

.ygw-login-auth-column {
	width: min(100%, 480px);
	justify-self: end;
}

.ygw-login-card-intro {
	margin-bottom: 17px;
}

.ygw-login-card-intro .ygw-auth-title {
	margin: 0 0 9px;
	font-size: 30px;
	letter-spacing: -.035em;
}

.ygw-login-card-intro .ygw-auth-subtitle {
	margin: 0;
	font-size: 14px;
	color: #9ba9c1;
}

.ygw-login-card.ygw-auth-card {
	border: 1px solid rgba(146, 189, 255, .18);
	border-radius: 24px;
	background: linear-gradient(145deg, rgba(20, 34, 60, .87), rgba(9, 16, 32, .83));
	box-shadow: 0 26px 72px rgba(0, 3, 22, .47), inset 0 1px rgba(255, 255, 255, .08);
	backdrop-filter: blur(22px);
}

.ygw-login-card .ygw-auth-card-inner {
	padding: 30px 33px 28px;
}

.ygw-login-card.ygw-login-mode-current .ygw-auth-login-head,
.ygw-login-card.ygw-login-mode-current .ygw-auth-form-wrap,
.ygw-login-card.ygw-login-mode-current .ygw-login-register,
.ygw-login-card.ygw-login-mode-account-password .ygw-login-third-party {
	display: none;
}

.ygw-login-card .ygw-auth-form .rfm {
	position: relative;
	margin: 0 0 17px !important;
}

.ygw-login-card .ygw-auth-form th {
	padding: 0 0 8px !important;
	font-size: 12px;
	font-weight: 600;
	color: #bdc9dc;
}

.ygw-login-card .ygw-auth-form td {
	position: relative;
}

.ygw-login-card .ygw-auth-form input.px,
.ygw-login-card .ygw-auth-form select,
.ygw-login-card .ygw-auth-card input.px,
.ygw-login-card .ygw-auth-card select {
	height: 52px;
	padding: 0 44px 0 43px;
	border: 1px solid rgba(129, 169, 230, .18);
	border-radius: 13px;
	background: rgba(6, 16, 35, .72);
	color: #f4f8ff;
	font-size: 14px;
}

.ygw-login-card .ygw-auth-form select {
	padding-left: 15px;
}

.ygw-login-card .ygw-login-loginfield {
	margin-bottom: 12px !important;
}

.ygw-login-card .ygw-login-loginfield select {
	padding-right: 15px;
}

.ygw-login-card .ygw-auth-form input.px:focus,
.ygw-login-card .ygw-auth-form select:focus,
.ygw-login-card .ygw-auth-card input.px:focus,
.ygw-login-card .ygw-auth-card select:focus {
	border-color: rgba(0, 223, 255, .86);
	box-shadow: 0 0 0 4px rgba(0, 212, 255, .1), 0 0 22px rgba(0, 181, 255, .12);
	background: rgba(7, 19, 40, .91);
}

.ygw-login-input-icon {
	position: absolute;
	z-index: 1;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #80a7dc;
	font-size: 16px;
	pointer-events: none;
}

.ygw-login-password-toggle {
	position: absolute;
	z-index: 1;
	right: 12px;
	top: 50%;
	width: 28px;
	height: 28px;
	padding: 0;
	transform: translateY(-50%);
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #83a1ca;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

.ygw-login-password-toggle:hover,
.ygw-login-password-toggle:focus-visible {
	color: var(--ygw-login-cyan);
	background: rgba(0, 212, 255, .12);
	outline: none;
}

.ygw-login-card .ygw-auth-form .tipcol {
	padding-top: 8px !important;
	font-size: 12px;
	text-align: right;
}

.ygw-login-card .ygw-auth-form .tipcol a,
.ygw-login-card .ygw-auth-options a {
	color: #7ccfff !important;
}

.ygw-login-card .ygw-auth-options {
	margin: 2px 0 21px;
	font-size: 12px;
}

.ygw-login-card .ygw-auth-options label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.ygw-login-card .ygw-auth-options input.pc {
	accent-color: var(--ygw-login-cyan);
}

.ygw-login-card .ygw-auth-submit-row .pn,
.ygw-login-card .ygw-auth-card .pn.pnc {
	height: 52px;
	border-radius: 13px;
	background: linear-gradient(98deg, #00d7ff, #5e6eff 57%, #8f62ff) !important;
	color: #fff !important;
	font-size: 15px;
	letter-spacing: .04em;
	box-shadow: 0 14px 28px rgba(38, 115, 255, .34);
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.ygw-login-card .ygw-auth-submit-row .pn strong,
.ygw-login-card .ygw-auth-card .pn.pnc strong,
.ygw-login-card .ygw-auth-card .pn.pnc span {
	color: #fff !important;
}

.ygw-login-card .ygw-auth-submit-row .pn:hover,
.ygw-login-card .ygw-auth-submit-row .pn:focus-visible {
	transform: translateY(-2px) scale(1.012);
	box-shadow: 0 17px 35px rgba(24, 142, 255, .48), 0 0 25px rgba(79, 116, 255, .25);
	filter: saturate(1.12);
	outline: none;
}

.ygw-login-third-party .ygw-third-login {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.ygw-login-third-party .ygw-third-login-label {
	position: relative;
	font-size: 12px;
	color: #8090a8;
}

.ygw-login-third-party .ygw-third-login-list {
	gap: 10px;
	margin-top: 13px;
}

.ygw-login-third-party .ygw-third-login-item {
	width: auto;
	height: 40px;
	min-width: 118px;
	padding: 0 15px;
	border-radius: 11px;
	background: rgba(19, 37, 68, .68);
	border-color: rgba(135, 176, 237, .17);
}

.ygw-login-third-party .ygw-third-login-item::after {
	content: attr(title);
	margin-left: 7px;
	font-size: 12px;
	font-weight: 600;
}

.ygw-login-third-party .ygw-third-login-item svg {
	width: 17px;
	height: 17px;
}

.ygw-login-register {
	margin: 20px 0 0;
	text-align: center;
	color: #8998b0;
	font-size: 13px;
}

.ygw-login-register a {
	margin-left: 6px;
	color: var(--ygw-login-cyan) !important;
	font-weight: 700;
}

.ygw-login-register a span {
	display: inline-block;
	transition: transform .18s ease;
}

.ygw-login-register a:hover span { transform: translateX(4px); }

.ygw-login-agreement {
	margin: 16px 0 0;
	color: #7586a0;
	font-size: 11px;
	line-height: 1.7;
	text-align: center;
}

.ygw-login-agreement-control {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-right: 2px;
	cursor: pointer;
}

.ygw-login-agreement-control input {
	width: 14px;
	height: 14px;
	margin: 0;
	accent-color: var(--ygw-login-cyan);
}

.ygw-login-agreement-control input:focus-visible {
	outline: 2px solid var(--ygw-login-cyan);
	outline-offset: 2px;
}

.ygw-login-agreement-control input[aria-invalid="true"] {
	outline: 2px solid #ff9071;
	outline-offset: 2px;
}

.ygw-login-agreement span {
	color: #8c9bb0;
}

.ygw-login-agreement-error {
	margin: 7px 0 0;
	color: #ffb49d;
	font-size: 11px;
	line-height: 1.6;
	text-align: center;
}

.ygw-login-agreement-error[hidden] {
	display: none;
}

.ygw-login-document-link {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #7ccfff;
	font: inherit;
	cursor: pointer;
}

.ygw-login-document-link:hover,
.ygw-login-document-link:focus-visible {
	color: var(--ygw-login-cyan);
	outline: none;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.ygw-login-document-content {
	display: none;
}

#fwin_dialog.ygw-login-document-modal {
	max-width: calc(100vw - 48px);
	border: 1px solid rgba(108, 174, 255, .22);
	border-radius: 20px;
	background: linear-gradient(145deg, rgba(20, 34, 59, .97), rgba(8, 15, 30, .98));
	box-shadow: 0 30px 90px rgba(0, 2, 18, .76), 0 0 0 1px rgba(255, 255, 255, .035) inset, 0 0 48px rgba(52, 103, 255, .16);
	overflow: hidden;
}

#fwin_dialog.ygw-login-document-modal .fwin {
	width: min(760px, calc(100vw - 48px));
	border-spacing: 0;
	background: transparent;
	box-shadow: none;
}

#fwin_dialog.ygw-login-document-modal .t_l,
#fwin_dialog.ygw-login-document-modal .t_c,
#fwin_dialog.ygw-login-document-modal .t_r,
#fwin_dialog.ygw-login-document-modal .m_l,
#fwin_dialog.ygw-login-document-modal .m_r,
#fwin_dialog.ygw-login-document-modal .b_l,
#fwin_dialog.ygw-login-document-modal .b_c,
#fwin_dialog.ygw-login-document-modal .b_r {
	width: 0;
	height: 0;
	padding: 0;
	background: transparent;
}

#fwin_dialog.ygw-login-document-modal .m_c {
	width: auto;
	max-width: none;
	background: transparent;
}

#fwin_dialog.ygw-login-document-modal .flb {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 68px;
	margin: 0;
	padding: 0 20px 0 24px;
	border-bottom: 1px solid rgba(151, 193, 255, .12);
	background: linear-gradient(90deg, rgba(37, 61, 99, .58), rgba(14, 26, 49, .18));
	box-sizing: border-box;
}

#fwin_dialog.ygw-login-document-modal .flb em {
	float: none;
	margin: 0;
	color: #f5f8ff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: .01em;
}

#fwin_dialog.ygw-login-document-modal .flb span {
	float: none;
	display: flex;
	align-items: center;
	margin-left: 16px;
}

#fwin_dialog.ygw-login-document-modal .flb span a.flbc {
	float: none;
	display: grid;
	width: 34px;
	height: 34px;
	margin: 0;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(154, 191, 246, .18);
	border-radius: 10px;
	background: rgba(6, 14, 29, .52);
	color: #aebbd0 !important;
	font-size: 0;
	line-height: 1;
	transition: border-color .18s ease, background-color .18s ease, color .18s ease, transform .18s ease;
}

#fwin_dialog.ygw-login-document-modal .flb span a.flbc::before {
	content: '×';
	color: currentColor;
	font-family: Arial, sans-serif;
	font-size: 25px;
	font-weight: 300;
	line-height: 1;
}

#fwin_dialog.ygw-login-document-modal .flb span a.flbc:hover,
#fwin_dialog.ygw-login-document-modal .flb span a.flbc:focus-visible {
	border-color: rgba(0, 223, 255, .7);
	background: rgba(0, 211, 255, .12);
	color: #e9fbff !important;
	outline: none;
	transform: translateY(-1px);
}

.ygw-login-document-dialog {
	width: min(712px, calc(100vw - 96px));
	max-height: min(64vh, 610px);
	padding: 23px 24px 28px;
	box-sizing: border-box;
	overflow: auto;
	overscroll-behavior: contain;
	color: #c8d3e5;
	font-size: 14px;
	line-height: 1.9;
	word-break: break-word;
	scrollbar-color: rgba(104, 177, 255, .55) rgba(5, 14, 29, .48);
	scrollbar-width: thin;
}

.ygw-login-document-dialog::-webkit-scrollbar {
	width: 8px;
}

.ygw-login-document-dialog::-webkit-scrollbar-track {
	border-radius: 999px;
	background: rgba(5, 14, 29, .48);
}

.ygw-login-document-dialog::-webkit-scrollbar-thumb {
	border: 2px solid rgba(5, 14, 29, .48);
	border-radius: 999px;
	background: linear-gradient(#58dfff, #6d78ff);
}

.ygw-login-document-dialog > :first-child {
	margin-top: 0;
}

.ygw-login-document-dialog > :last-child {
	margin-bottom: 0;
}

.ygw-login-document-dialog h2,
.ygw-login-document-dialog h3,
.ygw-login-document-dialog h4 {
	color: #f4f8ff;
	line-height: 1.45;
}

.ygw-login-document-dialog h2 { font-size: 21px; }
.ygw-login-document-dialog h3 { font-size: 18px; }
.ygw-login-document-dialog h4 { font-size: 16px; }

.ygw-login-document-dialog a {
	color: #74dcff;
	text-decoration: underline;
	text-decoration-color: rgba(116, 220, 255, .44);
	text-underline-offset: 3px;
}

.ygw-login-document-dialog a:hover,
.ygw-login-document-dialog a:focus-visible {
	color: #c2f5ff;
	outline: none;
	text-decoration-color: currentColor;
}

.ygw-login-document-dialog img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 16px auto;
	border: 1px solid rgba(148, 188, 244, .16);
	border-radius: 10px;
}

.ygw-login-document-dialog pre,
.ygw-login-document-dialog code {
	white-space: pre-wrap;
	word-break: break-word;
}

.ygw-login-document-dialog pre {
	padding: 13px 15px;
	border: 1px solid rgba(148, 188, 244, .12);
	border-radius: 10px;
	background: rgba(3, 11, 25, .62);
	color: #d4e5ff;
}

.ygw-login-document-dialog code {
	color: #d4e5ff;
}

.ygw-login-document-dialog blockquote {
	margin: 14px 0;
	padding: 10px 15px;
	border-left: 3px solid #49d7ff;
	border-radius: 0 9px 9px 0;
	background: rgba(47, 124, 204, .12);
	color: #b9cce5;
}

.ygw-login-document-dialog ul,
.ygw-login-document-dialog ol {
	padding-left: 24px;
}

.ygw-login-document-dialog hr {
	margin: 20px 0;
	border: 0;
	border-top: 1px solid rgba(148, 188, 244, .14);
}

.ygw-login-security-question,
.ygw-login-security-answer,
.ygw-login-card .seccode,
.ygw-login-card [id^="seccode_c"],
.ygw-login-card [id^="secqaa_q"] {
	border-radius: 13px;
}

.ygw-login-card [id^="seccode_c"],
.ygw-login-card [id^="secqaa_q"] {
	padding: 12px;
	border: 1px solid rgba(126, 173, 255, .15);
	background: rgba(5, 16, 35, .48);
}

.ygw-login-card [id^="seccode_c"] input,
.ygw-login-card [id^="secqaa_q"] input {
	max-width: 100%;
}

.ygw-login-footer {
	position: relative;
	z-index: 1;
	width: min(1400px, 100%);
	margin: 0 auto;
	padding: 0 0 25px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	color: rgba(148, 165, 192, .62);
	font-size: 11px;
}

/* Keep modal / float login compact and compatible with the standard Discuz dialog layer. */
.ygw-auth-float {
	background: #061126;
}

.ygw-auth-float [id^="main_messaqge_"] {
	width: min(440px, calc(100vw - 30px));
}

@keyframes ygw-login-orbit {
	0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .5; }
	50% { transform: translate3d(14px, -16px, 0) scale(1.12); opacity: .88; }
}

@media (max-width: 1080px) {
	.ygw-login-layout {
		grid-template-columns: minmax(0, 1fr) minmax(370px, .88fr);
		gap: 48px;
	}
	.ygw-login-showcase h1 { font-size: 49px; }
	.ygw-login-work { height: 132px; }
}

@media (max-width: 860px) {
	.ygw-login-page.ygw-auth-page { padding: 0 22px; overflow: auto; }
	.ygw-login-header { height: 74px; }
	.ygw-login-layout {
		min-height: calc(100svh - 74px);
		grid-template-columns: 1fr;
		gap: 26px;
		padding: 35px 0 38px;
	}
	.ygw-login-showcase { max-width: none; padding: 0; }
	.ygw-login-featured,
	.ygw-login-mission { display: none; }
	.ygw-login-auth-column { justify-self: center; }
	.ygw-login-footer { padding-bottom: 18px; }
}

@media (max-width: 560px) {
	.ygw-login-page.ygw-auth-page { padding: 0 14px; }
	.ygw-login-header { height: 64px; }
	.ygw-login-brand { font-size: 12px; gap: 8px; }
	.ygw-login-home-link { font-size: 12px; }
	.ygw-login-showcase h1 { font-size: 36px; }
	.ygw-login-lead { margin: 13px 0 21px; font-size: 14px; line-height: 1.7; }
	.ygw-login-stats { gap: 8px; }
	.ygw-login-stat { min-height: 68px; padding: 11px 9px; border-radius: 11px; }
	.ygw-login-stat strong { font-size: 20px; }
	.ygw-login-stat span { margin-top: 5px; font-size: 10px; }
	.ygw-login-card-intro .ygw-auth-title { font-size: 27px; }
	.ygw-login-card .ygw-auth-card-inner { padding: 25px 20px 23px; }
	.ygw-login-third-party .ygw-third-login-item { min-width: 0; flex: 1 1 120px; }
	.ygw-login-agreement { margin-top: 14px; }
	#fwin_dialog.ygw-login-document-modal { max-width: calc(100vw - 28px); border-radius: 16px; }
	#fwin_dialog.ygw-login-document-modal .fwin { width: calc(100vw - 28px); }
	#fwin_dialog.ygw-login-document-modal .flb { min-height: 60px; padding: 0 13px 0 18px; }
	#fwin_dialog.ygw-login-document-modal .flb em { font-size: 16px; }
	#fwin_dialog.ygw-login-document-modal .flb span a.flbc { width: 32px; height: 32px; }
	.ygw-login-document-dialog { width: calc(100vw - 56px); max-height: min(68svh, 610px); padding: 18px 18px 23px; font-size: 13px; line-height: 1.82; }
	.ygw-login-document-dialog h2 { font-size: 19px; }
	.ygw-login-document-dialog h3 { font-size: 17px; }
	.ygw-login-document-dialog h4 { font-size: 15px; }
	.ygw-login-footer { display: block; text-align: center; line-height: 1.8; }
	.ygw-login-footer span { display: block; }
}


/* Register-page variants reuse the login visual system without changing Discuz field hooks. */
body#nv_member.pg_register {
	background: var(--ygw-login-bg) !important;
	font-family: "Inter", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
	overflow-x: hidden;
}

body#nv_member.pg_register a {
	text-decoration: none;
}

.ygw-register-layout {
	align-items: start;
}

.ygw-register-auth-column {
	padding: 34px 0;
}

.ygw-login-page.ygw-register-page {
	overflow: visible;
}

.ygw-register-card.ygw-login-card {
	box-sizing: border-box;
	width: 100% !important;
	margin: 0 !important;
	max-height: none;
	padding: 30px 33px 28px;
	border: 1px solid rgba(146, 189, 255, .18) !important;
	border-radius: 24px;
	background: linear-gradient(145deg, rgba(20, 34, 60, .87), rgba(9, 16, 32, .83)) !important;
	box-shadow: 0 26px 72px rgba(0, 3, 22, .47), inset 0 1px rgba(255, 255, 255, .08) !important;
	overflow: visible;
}

.ygw-register-card .mn,
.ygw-register-card .bm,
.ygw-register-card .bm_c,
.ygw-register-card .mtw,
.ygw-register-card #reginfo_a,
.ygw-register-card #layer_reg,
.ygw-register-card #layer_reginfo_b {
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

.ygw-register-card .bm_h {
	min-height: 0;
	margin: 0 0 21px;
	padding: 0 0 17px;
	border: 0;
	border-bottom: 1px solid rgba(142, 183, 242, .13);
	background: transparent;
}

.ygw-register-card .bm_h .y {
	float: none;
	display: block;
	margin-top: 9px;
	font-size: 12px;
	text-align: center;
}

.ygw-register-card .bm_h h3 {
	margin: 0;
	color: #f4f8ff;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}

.ygw-register-card #returnmessage4 {
	margin: 0 0 15px;
	color: #ffc2aa;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

.ygw-register-card .rfm {
	width: 100% !important;
	margin: 0 0 16px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

.ygw-register-card table,
.ygw-register-card tbody,
.ygw-register-card tr,
.ygw-register-card th,
.ygw-register-card td {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
	margin: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

.ygw-register-card th {
	padding: 0 0 8px !important;
	color: #bdc9dc;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
}

.ygw-register-card td {
	padding: 0 !important;
}

.ygw-register-card .rq {
	color: #ff9071;
}

.ygw-register-card input.px,
.ygw-register-card select,
.ygw-register-card textarea {
	display: block;
	width: 100% !important;
	max-width: none;
	height: 48px;
	box-sizing: border-box;
	padding: 0 14px;
	border: 1px solid rgba(129, 169, 230, .18);
	border-radius: 13px;
	background: rgba(6, 16, 35, .72);
	color: #f4f8ff;
	font-size: 14px;
	outline: none;
}

.ygw-register-card textarea {
	height: 110px;
	padding-top: 12px;
	padding-bottom: 12px;
	resize: vertical;
}

.ygw-register-card input.px:focus,
.ygw-register-card select:focus,
.ygw-register-card textarea:focus {
	border-color: rgba(0, 223, 255, .86);
	box-shadow: 0 0 0 4px rgba(0, 212, 255, .1), 0 0 22px rgba(0, 181, 255, .12);
	background: rgba(7, 19, 40, .91);
}

.ygw-register-card .tipcol,
.ygw-register-card .tipwide {
	display: block;
	position: static !important;
	min-width: 0;
	margin: 7px 0 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.ygw-register-card .p_tip,
.ygw-register-card .p_chk {
	display: block;
	position: static !important;
	z-index: auto;
	width: auto !important;
	max-width: 100% !important;
	min-width: 0;
	box-sizing: border-box;
	overflow-wrap: anywhere;
}

.ygw-register-card .p_tip {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #8495b1 !important;
	font-size: 11px;
	font-style: normal;
	line-height: 1.6;
}

.ygw-register-card .p_chk {
	margin: 6px 0 0 !important;
	padding: 0 !important;
	color: #ffb49d;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.ygw-register-password-field {
	position: relative;
	display: block;
}

.ygw-register-password-field input.px {
	padding-right: 44px;
}

.ygw-register-password-field .ygw-login-password-toggle {
	top: 24px;
}

.ygw-register-card .p_right .p_chk {
	color: #71efd7;
}

.ygw-register-card input.er,
.ygw-register-card select.er,
.ygw-register-card textarea.er {
	border-color: rgba(255, 132, 103, .85);
	box-shadow: 0 0 0 4px rgba(255, 112, 85, .1);
}

.ygw-register-card #emailmore {
	display: block;
	height: 0;
}

.ygw-register-card #layer_reginfo_b .rfm,
.ygw-register-card #layer_reginfo_b table,
.ygw-register-card #layer_reginfo_b tbody,
.ygw-register-card #layer_reginfo_b tr,
.ygw-register-card #layer_reginfo_b td,
.ygw-register-card #reginfo_a_btn {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	box-sizing: border-box;
}

.ygw-register-card #reginfo_a_btn em,
.ygw-register-card #layer_reginfo_b th,
.ygw-register-card #layer_reginfo_b td:last-child {
	display: none !important;
}

.ygw-register-card .pn.pnc,
.ygw-register-card #registerformsubmit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: 52px;
	padding: 0 14px;
	border: 0;
	border-radius: 13px;
	background: linear-gradient(98deg, #00d7ff, #5e6eff 57%, #8f62ff) !important;
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	box-shadow: 0 14px 28px rgba(38, 115, 255, .34);
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.ygw-register-card .pn.pnc strong,
.ygw-register-card .pn.pnc span,
.ygw-register-card #registerformsubmit strong {
	color: #fff !important;
	line-height: 1;
}

.ygw-register-card .pn.pnc:hover,
.ygw-register-card .pn.pnc:focus-visible,
.ygw-register-card #registerformsubmit:hover,
.ygw-register-card #registerformsubmit:focus-visible {
	transform: translateY(-2px) scale(1.012);
	box-shadow: 0 17px 35px rgba(24, 142, 255, .48), 0 0 25px rgba(79, 116, 255, .25);
	filter: saturate(1.12);
	outline: none;
}

.ygw-register-card #agreebbrule {
	margin: 15px 7px 0 0;
	accent-color: var(--ygw-login-cyan);
}

.ygw-register-card label[for="agreebbrule"] {
	color: #a9b8cf;
	font-size: 12px;
	line-height: 1.6;
}

.ygw-register-card a,
.ygw-auth-login-link {
	color: #7ccfff !important;
}

.ygw-register-card a:hover,
.ygw-auth-login-link:hover {
	color: var(--ygw-login-cyan) !important;
}

.ygw-register-card hr.l {
	border-color: rgba(142, 183, 242, .13);
}

.ygw-register-card .sendsec {
	display: block !important;
	margin-top: 9px;
}

.ygw-register-card .sendsec .pn {
	width: 100%;
	height: 42px;
	font-size: 12px;
}

.ygw-register-card [id^="seccode_c"],
.ygw-register-card [id^="secqaa_q"] {
	padding: 12px;
	border: 1px solid rgba(126, 173, 255, .15);
	border-radius: 13px;
	background: rgba(5, 16, 35, .48);
}

.ygw-register-card .passlevel {
	display: inline-block;
	padding: 2px 7px;
	border-radius: 99px;
	background: rgba(89, 119, 255, .16);
	color: #a8c5ff;
}

.ygw-register-card #layer_regmessage {
	margin-top: 15px;
}

.ygw-register-card #layer_bbrule {
	color: #b7c6db;
}

.ygw-register-float {
	min-height: 100%;
	padding: 0;
	background: #061126;
}

.ygw-register-float #ct {
	width: min(480px, calc(100vw - 30px));
	max-height: none;
}

@media (max-width: 1080px) {
	.ygw-register-card.ygw-login-card {
		max-height: none;
	}
}

@media (max-width: 860px) {
	.ygw-register-auth-column {
		padding: 0;
	}
	.ygw-register-card.ygw-login-card {
		max-height: none;
		overflow: visible;
	}
}

@media (max-width: 560px) {
	.ygw-register-card.ygw-login-card {
		padding: 25px 20px 23px;
	}
	.ygw-register-card input.px,
	.ygw-register-card select,
	.ygw-register-card textarea {
		height: 46px;
		font-size: 13px;
	}
	.ygw-register-card textarea {
		height: 104px;
	}
	.ygw-register-card .bm_h {
		margin-bottom: 18px;
		padding-bottom: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ygw-login-page *,
	.ygw-login-page *::before,
	.ygw-login-page *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Creator community landing refinements. These rules intentionally sit last so
 * the standalone login route remains independent of the active Discuz theme. */
body#nv_member.pg_logging { background: #030d22 !important; }
.ygw-login-page.ygw-auth-page {
  --ygw-login-bg: #030d22;
  min-height: 100vh;
  padding: 0 clamp(32px, 4vw, 66px);
  background:
    radial-gradient(circle at 4% 16%, rgba(25, 216, 255, .18), transparent 25rem),
    radial-gradient(circle at 94% 88%, rgba(139, 92, 255, .22), transparent 27rem),
    radial-gradient(circle at 51% 37%, rgba(33, 75, 190, .13), transparent 25rem),
    linear-gradient(135deg, #030d22 0%, #071833 55%, #040c20 100%);
}
.ygw-login-page.ygw-auth-page::before {
  background-image: linear-gradient(rgba(111, 157, 231, .052) 1px, transparent 1px), linear-gradient(90deg, rgba(111, 157, 231, .044) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .25) 68%, transparent);
}
.ygw-login-page.ygw-auth-page::after { left: 31%; top: 4%; width: 31rem; height: 31rem; opacity: .9; }
.ygw-login-header, .ygw-login-footer { display: none; }
.ygw-login-layout {
  width: min(1680px, 100%);
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.38fr) minmax(460px, 1fr);
  gap: clamp(50px, 6.2vw, 106px);
  padding: 42px 0;
}
.ygw-login-showcase { max-width: 850px; padding: 4px 0; }
.ygw-login-eyebrow, .ygw-login-section-heading p { margin-bottom: 13px; font-size: 14px; letter-spacing: .08em; color: #19d8ff; }
.ygw-login-showcase h1 { max-width: none; font-size: clamp(52px, 4.4vw, 72px); line-height: 1.06; letter-spacing: -.07em; text-shadow: 0 4px 26px rgba(133, 182, 255, .13); }
.ygw-login-showcase h1 span { background-image: linear-gradient(105deg, #26ddff, #5caeff 48%, #a56bff); }
.ygw-login-lead { max-width: 650px; margin: 23px 0 30px; font-size: 18px; line-height: 1.82; color: #a7b8d4; }
.ygw-login-stats { max-width: 790px; gap: 18px; }
.ygw-login-stat { position: relative; min-height: 130px; padding: 19px 18px 15px 91px; border-color: rgba(88, 151, 255, .28); border-radius: 16px; background: linear-gradient(135deg, rgba(11, 40, 79, .82), rgba(7, 24, 56, .75)); box-shadow: inset 0 1px rgba(255, 255, 255, .055), 0 14px 32px rgba(0, 21, 67, .2); }
.ygw-login-stat-icon { position: absolute; left: 17px; top: 20px; width: 54px; height: 54px; margin: 0 !important; display: grid !important; place-items: center; border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(82, 180, 255, .42), rgba(13, 96, 210, .16)); color: #22dbff; font-size: 27px; box-shadow: inset 0 1px rgba(255,255,255,.12), 0 0 26px rgba(30, 163, 255, .13); }
.ygw-login-stat:nth-child(1) .ygw-login-stat-icon::before { content: '↗'; transform: rotate(-35deg); }
.ygw-login-stat:nth-child(2) .ygw-login-stat-icon { background: radial-gradient(circle at 35% 30%, rgba(196, 112, 255, .42), rgba(109, 54, 199, .16)); color: #e69aff; }
.ygw-login-stat:nth-child(2) .ygw-login-stat-icon::before { content: '♟'; }
.ygw-login-stat:nth-child(3) .ygw-login-stat-icon { background: radial-gradient(circle at 35% 30%, rgba(59, 255, 206, .35), rgba(13, 149, 169, .14)); color: #2cffe0; }
.ygw-login-stat:nth-child(3) .ygw-login-stat-icon::before { content: '♨'; }
.ygw-login-stat strong { font-size: 31px; }
.ygw-login-stat div > span { margin-top: 5px; font-size: 14px; color: #d8e7ff; }
.ygw-login-stat small { position: absolute; left: 18px; bottom: 16px; color: #7f94ba; font-size: 13px; }
.ygw-login-featured { max-width: 850px; margin-top: 35px; }
.ygw-login-section-heading h2 { font-size: 23px; }
.ygw-login-slider-controls button { width: 43px; height: 43px; border-radius: 50%; font-size: 23px; background: rgba(8, 31, 68, .58); }
.ygw-login-work-track { gap: 15px; }
.ygw-login-work { flex-basis: calc((100% - 30px) / 3); height: 198px; border-color: rgba(92, 147, 237, .2); }
.ygw-login-work-meta { left: 16px; right: 16px; bottom: 14px; }
.ygw-login-work-meta strong { font-size: 15px; }.ygw-login-work-meta small { font-size: 12px; }
.ygw-login-mission { max-width: 810px; margin-top: 30px; padding: 18px 21px; border-color: rgba(88, 151, 255, .2); border-radius: 16px; background: linear-gradient(100deg, rgba(12, 40, 83, .67), rgba(15, 29, 70, .42)); font-size: 14px; }
.ygw-login-mission p { display: grid; gap: 3px; }.ygw-login-mission strong { color: #eef5ff; font-size: 16px; font-weight: 600; }.ygw-login-mission span { color: #99aad0; }
.ygw-login-auth-column { position: relative; isolation: isolate; width: min(100%, 530px); min-height: 610px; align-self: center; justify-self: end; padding: 38px 40px 34px; overflow: visible; border: 1px solid rgba(88, 151, 255, .38); border-radius: 30px; box-sizing: border-box; background: linear-gradient(145deg, rgba(10, 36, 77, .88), rgba(7, 22, 52, .89)); box-shadow: 0 26px 80px rgba(0, 7, 42, .42), 0 0 60px rgba(63, 95, 255, .12), inset 0 1px rgba(255,255,255,.08); backdrop-filter: blur(22px); }
.ygw-login-auth-column::before { content: ''; position: absolute; z-index: 0; top: 41px; right: -7px; width: 284px; height: 138px; border: 2px solid rgba(48, 214, 255, .55); border-radius: 50%; transform: rotate(-8deg); box-shadow: 0 0 18px rgba(22, 204, 255, .35), inset 0 0 26px rgba(105, 71, 255, .26); opacity: .8; pointer-events: none; }
.ygw-login-auth-column::after { content: ''; position: absolute; z-index: 1; top: 17px; right: -1px; width: 340px; height: 246px; border-radius: 50%; background: radial-gradient(ellipse at 58% 66%, rgba(41, 216, 255, .2), rgba(119, 77, 255, .12) 35%, transparent 68%); filter: blur(4px); pointer-events: none; }
.ygw-login-mascot { position: absolute; z-index: 2; top: -35px; right: -37px; width: 442px; height: 256px; object-fit: contain; object-position: center; opacity: .98; pointer-events: none; filter: drop-shadow(0 18px 24px rgba(21, 75, 255, .26)); }
.ygw-login-card-intro { position: relative; z-index: 3; min-height: 190px; margin: 0; }.ygw-login-card-intro .ygw-auth-title { margin: 0 0 10px; font-size: 35px; color: #f6f8ff; }.ygw-login-card-intro .ygw-auth-subtitle { font-size: 16px; color: #adbfdd; }
.ygw-login-card.ygw-auth-card { position: relative; z-index: 3; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }.ygw-login-card .ygw-auth-card-inner { display: flex; flex-direction: column; padding: 0; }
.ygw-login-card .ygw-auth-form-wrap { order: 2; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(120, 160, 228, .18); }.ygw-login-card .ygw-auth-form-wrap::before { content: '账号密码登录'; position: absolute; left: 50%; transform: translate(-50%, -28px); padding: 0 12px; background: #0a2450; color: #8398bc; font-size: 12px; white-space: nowrap; }
.ygw-login-third-party { order: 1; }.ygw-login-third-party .ygw-third-login { margin: 0; padding: 0; border: 0; }.ygw-login-third-party .ygw-third-login-label { position: relative; display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 14px; color: #aab9d4; }.ygw-login-third-party .ygw-third-login-label::before, .ygw-login-third-party .ygw-third-login-label::after { content: ''; width: 30%; height: 1px; background: rgba(123, 163, 229, .19); }
.ygw-login-third-party .ygw-third-login-list { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 18px; }.ygw-login-third-party .ygw-third-login-item { position: relative; width: 100%; min-width: 0; height: 104px; padding: 0 70px 0 93px; justify-content: flex-start; border-radius: 18px; box-sizing: border-box; text-align: left; color: #fff !important; cursor: pointer; overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease; }.ygw-login-third-party .ygw-third-login-item::before { content: ''; position: absolute; left: 20px; top: 50%; width: 60px; height: 60px; transform: translateY(-50%); background: center / contain no-repeat; filter: drop-shadow(0 7px 11px rgba(0, 8, 31, .24)); }.ygw-login-third-party .ygw-third-login-item::after { content: none; }.ygw-login-third-party .ygw-third-login-item svg { display: none; }.ygw-login-third-party .ygw-third-login-item-wechat, .ygw-login-third-party .ygw-third-login-item-weixin { border: 1px solid rgba(47, 224, 143, .28); background: linear-gradient(100deg, rgba(7, 93, 74, .9), rgba(15, 55, 89, .78)); }.ygw-login-third-party .ygw-third-login-item-wechat::before, .ygw-login-third-party .ygw-third-login-item-weixin::before { background-image: url('../image/ygw/login-wechat-icon-v1.png'); }.ygw-login-third-party .ygw-third-login-item-qq { border: 1px solid rgba(84, 166, 255, .28); background: linear-gradient(100deg, rgba(20, 77, 145, .87), rgba(19, 53, 108, .8)); }.ygw-login-third-party .ygw-third-login-item-qq::before { background-image: url('../image/ygw/login-qq-icon-v1.png'); }.ygw-login-third-party .ygw-third-login-item:hover, .ygw-login-third-party .ygw-third-login-item:focus-visible { transform: translateY(-3px); filter: brightness(1.12); outline: none; }.ygw-login-third-party .ygw-third-login-item-wechat:hover, .ygw-login-third-party .ygw-third-login-item-wechat:focus-visible, .ygw-login-third-party .ygw-third-login-item-weixin:hover, .ygw-login-third-party .ygw-third-login-item-weixin:focus-visible { box-shadow: 0 15px 32px rgba(19, 224, 147, .17), 0 0 0 3px rgba(31, 223, 140, .09); }.ygw-login-third-party .ygw-third-login-item-qq:hover, .ygw-login-third-party .ygw-third-login-item-qq:focus-visible { box-shadow: 0 15px 32px rgba(40, 129, 255, .2), 0 0 0 3px rgba(42, 142, 255, .09); }.ygw-login-third-party .ygw-third-login-item:active { transform: translateY(-1px) scale(.985); }
.ygw-third-login-copy { display: grid; gap: 8px; }.ygw-third-login-copy strong { color: #fff; font-size: 17px; }.ygw-third-login-copy small { color: #b8c9e4; font-size: 14px; }.ygw-third-login-copy em { display: inline-flex; margin-left: 8px; padding: 3px 8px; border-radius: 999px; background: rgba(20, 241, 161, .17); color: #42eaa8; font-size: 11px; font-style: normal; vertical-align: 2px; }.ygw-third-login-arrow { position: absolute; right: 24px; top: 50%; display: grid; width: 42px; height: 42px; place-items: center; transform: translateY(-50%); border: 1px solid rgba(145, 200, 255, .14); border-radius: 50%; background: rgba(37, 87, 148, .4); color: #d8ecff; font-size: 24px; transition: transform .2s ease; }.ygw-third-login-item:hover .ygw-third-login-arrow { transform: translate(3px, -50%); }
.ygw-third-login-item[disabled] { cursor: wait; opacity: .72; }.ygw-login-simulated-notice { position: fixed; z-index: 10001; right: 24px; bottom: 24px; max-width: min(390px, calc(100vw - 48px)); padding: 14px 17px; border: 1px solid rgba(73, 197, 255, .36); border-radius: 13px; background: rgba(6, 25, 60, .96); color: #eaf7ff; font-size: 13px; line-height: 1.5; box-shadow: 0 16px 46px rgba(0, 5, 35, .45), 0 0 24px rgba(41, 153, 255, .16); }
.ygw-login-third-party .ygw-third-login-item-wechat::before,
.ygw-login-card .ygw-auth-options { margin-bottom: 13px; }.ygw-login-card .ygw-auth-submit-row .pn { background: linear-gradient(100deg, #15cef5, #477fff 56%, #8b5cff) !important; color: #fff !important; }.ygw-login-card .ygw-auth-submit-row .pn strong { color: #fff !important; }.ygw-login-agreement { order: 3; margin-top: 21px; text-align: left; font-size: 12px; }.ygw-login-agreement-error { order: 4; text-align: left; }.ygw-login-register { order: 5; }
@media (max-width: 1199px) { .ygw-login-layout { grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); gap: 42px; }.ygw-login-showcase h1 { font-size: clamp(48px, 5vw, 62px); }.ygw-login-stats { gap: 10px; }.ygw-login-stat { padding-left: 75px; }.ygw-login-stat-icon { left: 12px; width: 47px; height: 47px; }.ygw-login-auth-column { padding: 34px 30px; } }
@media (max-width: 767px) { .ygw-login-page.ygw-auth-page { padding: 0 18px; overflow: visible; }.ygw-login-layout { display: flex; min-height: auto; padding: 52px 0; gap: 36px; flex-direction: column; align-items: stretch; }.ygw-login-showcase { width: 100%; }.ygw-login-showcase h1 { font-size: clamp(42px, 12vw, 52px); }.ygw-login-lead { font-size: 16px; }.ygw-login-stats { grid-template-columns: 1fr; }.ygw-login-stat { min-height: 104px; }.ygw-login-featured { margin-top: 30px; }.ygw-login-work { flex-basis: 100%; height: 210px; }.ygw-login-auth-column { width: 100%; min-height: 0; padding: 31px 20px 25px; border-radius: 24px; overflow: hidden; }.ygw-login-auth-column::before { top: 33px; right: -52px; width: 250px; height: 114px; }.ygw-login-auth-column::after { width: 288px; height: 210px; }.ygw-login-mascot { top: -21px; right: -45px; width: 360px; height: 208px; opacity: .92; }.ygw-login-card-intro { min-height: 160px; }.ygw-login-card-intro .ygw-auth-title { font-size: 31px; }.ygw-login-third-party .ygw-third-login-item { height: 96px; padding-left: 82px; }.ygw-login-third-party .ygw-third-login-item::before { left: 19px; }.ygw-login-third-party .ygw-third-login-item::after { left: 33px; }.ygw-login-third-party .ygw-third-login-item svg { left: 35px; } }
