/* VKT — "Advisor" auth theme */

.advisor-scene {
	display: grid;
	grid-template-columns: 1.1fr 0.95fr;
	min-height: 100vh;
	background: #eff2ec;
	font-family: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 860px) {
	.advisor-scene { grid-template-columns: 1fr; }
}

.adv-hero {
	padding: 64px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
}

@media (max-width: 860px) {
	.adv-hero { padding: 44px 28px 16px; }
}

.adv-eyebrow {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: #a97a2b;
	text-transform: uppercase;
}

.adv-headline {
	font-size: 38px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #16192c;
	text-wrap: balance;
	max-width: 440px;
}

.adv-sub {
	font-size: 14.5px;
	color: #61664f;
	max-width: 420px;
	line-height: 1.6;
	margin-top: -14px;
}

.adv-trust-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 8px;
}

.adv-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.adv-trust-icon {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: #f0d9a8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.adv-trust-icon svg { width: 20px; height: 20px; }

.adv-trust-text h3 {
	font-size: 14.5px;
	font-weight: 700;
	color: #16192c;
	margin: 0 0 3px;
}

.adv-trust-text p {
	font-size: 13px;
	color: #6b7060;
	margin: 0;
	line-height: 1.5;
}

.adv-card-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 44px 48px;
}

@media (max-width: 860px) {
	.adv-card-wrap { padding: 8px 24px 48px; }
}

.adv-card {
	width: 100%;
	max-width: 400px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 24px 48px -24px rgba(22, 25, 44, 0.22);
	padding: 40px 34px;
}

.adv-lang {
	text-align: right;
	font-size: 12px;
	color: #96a186;
	margin-bottom: 18px;
}

.adv-mark {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 26px;
}

.adv-mark .wordmark {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #16192c;
}

.adv-form-head { margin-bottom: 24px; }

.adv-form-head h1 {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 6px;
	color: #16192c;
	letter-spacing: -0.01em;
}

.adv-form-head p {
	font-size: 13px;
	color: #767a63;
	margin: 0;
}

.adv-field { margin-bottom: 15px; }

.adv-field label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #575c4a;
	margin-bottom: 7px;
}

.adv-field input {
	width: 100%;
	padding: 12.5px 14px;
	border-radius: 11px;
	border: 1.5px solid #e2e4da;
	background: #fbfbf8;
	font-size: 14px;
	color: #16192c;
	font-family: inherit;
}

.adv-field input::placeholder { color: #a3a793; }
.adv-field input:focus { outline: none; border-color: #c9963c; background: #fff; }

.adv-field.has-error input { border-color: #c9524b; }
.adv-field-error { font-size: 12px; color: #b3423f; margin-top: 6px; }

.adv-check {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12.5px;
	color: #575c4a;
	line-height: 1.5;
	margin-bottom: 12px;
}

.adv-check input {
	width: 15px;
	height: 15px;
	flex: 0 0 15px;
	align-self: flex-start;
	margin: 3px 0 0 0;
	accent-color: #a97a2b;
}

.adv-check a { color: #16192c; text-decoration: underline; }

.adv-row-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 12px;
}

.adv-alert {
	background: rgba(195, 79, 71, 0.08);
	border: 1px solid rgba(195, 79, 71, 0.28);
	color: #8a2f2c;
	border-radius: 10px;
	padding: 11px 13px;
	font-size: 12.5px;
	margin-bottom: 18px;
	line-height: 1.5;
}

.adv-alert.adv-alert-success {
	background: rgba(56, 122, 79, 0.08);
	border-color: rgba(56, 122, 79, 0.28);
	color: #2c6b45;
}

.link-gold {
	color: #a97a2b;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.btn-gold {
	width: 100%;
	padding: 13.5px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(180deg, #e2b354 0%, #cd9738 100%);
	color: #16192c;
	font-size: 14.5px;
	font-weight: 800;
	cursor: pointer;
	margin-bottom: 18px;
}

.btn-gold:hover { filter: brightness(1.04); }
.btn-gold:focus-visible { outline: 2px solid #16192c; outline-offset: 2px; }

.btn-ghost-adv {
	width: 100%;
	padding: 13.5px;
	border-radius: 999px;
	border: 1.5px solid #dfe2d6;
	background: transparent;
	color: #16192c;
	font-size: 14.5px;
	font-weight: 700;
	cursor: pointer;
	margin-bottom: 18px;
}

.adv-foot-note {
	text-align: center;
	font-size: 13px;
	color: #767a63;
}

.adv-foot-note a { color: #16192c; font-weight: 700; text-decoration: none; }

.adv-legal {
	text-align: center;
	font-size: 11.5px;
	color: #96a186;
	margin-top: 16px;
}

.adv-legal a { color: #767a63; text-decoration: underline; }
