:root {
	--vbm-bg: #f6f6f8;
	--vbm-card: #ffffff;
	--vbm-text: #24232a;
	--vbm-muted: #6d6a78;
	--vbm-line: #e5e3ea;
	--vbm-purple: #5a3ff2;
	--vbm-purple-dark: #4129d8;
	--vbm-purple-soft: #f0edff;
	--vbm-orange: #ff7043;
	--vbm-pink: #ff466f;
	--vbm-green: #15845d;
	--vbm-red: #c63e4f;
	--vbm-radius: 16px;
	--vbm-shadow: 0 10px 32px rgba(38, 31, 70, .08);
	--vbm-font: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--vbm-bg); }
body { margin: 0; color: var(--vbm-text); font-family: var(--vbm-font); -webkit-font-smoothing: antialiased; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.vbm-logo {
	display: inline-flex;
	align-items: flex-end;
	justify-content: center;
	gap: 4px;
	width: 44px;
	height: 44px;
	padding: 9px;
	border-radius: 13px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(0,0,0,.15);
	flex: 0 0 auto;
}
.vbm-logo i { display: block; width: 6px; border-radius: 6px; background: var(--vbm-orange); }
.vbm-logo i:nth-child(1) { height: 13px; }
.vbm-logo i:nth-child(2) { height: 23px; background: var(--vbm-pink); }
.vbm-logo i:nth-child(3) { height: 18px; background: var(--vbm-purple); }
.vbm-logo-large { width: 52px; height: 52px; padding: 11px; border-radius: 15px; }

.vbm-eyebrow,
.vbm-kicker {
	display: inline-block;
	color: var(--vbm-purple);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

/* Login */
.vbm-login-body { min-height: 100vh; background: #f4f3f8; }
.vbm-login-layout { min-height: 100vh; display: grid; grid-template-columns: minmax(420px, 1.05fr) minmax(420px, .95fr); }
.vbm-login-visual {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-between;
	min-height: 100vh;
	padding: clamp(36px, 5vw, 76px);
	overflow: hidden;
	background: linear-gradient(135deg, #242033 0%, #362859 58%, #5b3ef0 145%);
	color: #fff;
}
.vbm-login-visual::before,
.vbm-login-visual::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); }
.vbm-login-visual::before { width: 440px; height: 440px; right: -180px; top: -140px; background: rgba(116, 88, 255, .28); }
.vbm-login-visual::after { width: 320px; height: 320px; left: -130px; bottom: 60px; background: rgba(255, 112, 67, .12); }
.vbm-login-brand { display: flex; align-items: center; gap: 16px; }
.vbm-login-brand strong { display: block; font-size: 18px; }
.vbm-login-brand span span { display: block; margin-top: 3px; color: rgba(255,255,255,.62); font-size: 12px; }
.vbm-login-copy { max-width: 650px; margin: 9vh 0 7vh; }
.vbm-login-copy .vbm-kicker { color: #c9bfff; }
.vbm-login-copy h1 { margin: 18px 0 18px; color: #fff; font-size: clamp(38px, 5vw, 67px); line-height: 1.03; letter-spacing: -.055em; font-weight: 750; }
.vbm-login-copy p { max-width: 600px; margin: 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.65; }
.vbm-login-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vbm-login-points div { min-height: 102px; padding: 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.vbm-login-points b { display: block; margin-bottom: 17px; color: #bdb1ff; font-size: 11px; letter-spacing: .08em; }
.vbm-login-points span { display: block; font-size: 13px; line-height: 1.4; font-weight: 650; }
.vbm-login-panel {
	display: grid;
	place-items: center;
	min-height: 100vh;
	padding: 40px;
	background: #f7f8fa;
}
.vbm-login-card {
	width: min(100%, 500px);
	padding: 0;
	overflow: hidden;
	border: 1px solid #dfe3e8;
	border-radius: 10px;
	background: #fff;
	box-shadow: none;
}
.vbm-login-card-head {
	margin: 0;
	padding: 20px 22px;
	border-bottom: 1px solid #dfe3e8;
	background: #fff;
}
.vbm-login-card-body { padding: 22px; }
.vbm-mobile-logo { display: none; margin-bottom: 20px; }
.vbm-login-heading-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}
.vbm-login-card h2 {
	margin: 0 0 5px;
	color: #2d3338;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -.015em;
	line-height: 1.25;
}
.vbm-login-card-head p {
	margin: 0;
	color: #68727d;
	font-size: 13px;
	line-height: 1.5;
}
.vbm-login-access-badge {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid #dcdef4;
	border-radius: 999px;
	background: #f7f7ff;
	color: #5658ca;
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}
.vbm-field { display: block; margin-bottom: 17px; }
.vbm-field > span {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	color: #41484f;
	font-size: 12px;
	font-weight: 700;
}
.vbm-field em { color: #89929b; font-size: 11px; font-style: normal; font-weight: 500; }
.vbm-field input,
.vbm-field textarea,
.vbm-report-filter input,
.vbm-login-card input[type="text"],
.vbm-login-card input[type="password"] {
	width: 100%;
	border: 1px solid #dfe3e8;
	border-radius: 8px;
	background: #fff;
	color: #2d3338;
	outline: none;
	transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.vbm-field input,
.vbm-login-card input[type="text"],
.vbm-login-card input[type="password"] { height: 46px; padding: 0 12px; }
.vbm-field textarea { min-height: 90px; padding: 12px; resize: vertical; }
.vbm-field input:hover,
.vbm-login-card input:hover { border-color: #c8cdd4; }
.vbm-field input:focus,
.vbm-field textarea:focus,
.vbm-report-filter input:focus,
.vbm-login-card input:focus {
	border-color: #5b5ce2;
	box-shadow: 0 0 0 3px rgba(91, 92, 226, .14);
}
.vbm-password-wrap { position: relative; }
.vbm-password-wrap input { padding-right: 78px !important; }
.vbm-password-toggle {
	position: absolute;
	right: 5px;
	top: 5px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid #dfe3e8;
	border-radius: 7px;
	background: #f8f9fa;
	color: #5658ca;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}
.vbm-password-toggle:hover,
.vbm-password-toggle:focus { border-color: #c8cdd4; background: #f3f3ff; outline: none; }
.vbm-login-actions-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 1px 0 18px;
}
.vbm-check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: #59636d;
	font-size: 12px;
	cursor: pointer;
}
.vbm-check input { width: 16px; height: 16px; accent-color: #5b5ce2; }
.vbm-primary-button,
.vbm-button-soft,
.vbm-danger-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 13px;
	line-height: 1;
	font-weight: 600;
	cursor: pointer;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.vbm-primary-button { border: 1px solid #5b5ce2; background: #5b5ce2; color: #fff; }
.vbm-primary-button:hover,
.vbm-primary-button:focus {
	border-color: #4849c9;
	background: #4849c9;
	color: #fff;
	box-shadow: 0 0 0 3px rgba(91, 92, 226, .14);
	outline: none;
}
.vbm-button-soft { border: 1px solid #dfe3e8; background: #fff; color: #343a40; }
.vbm-button-soft:hover { border-color: #c8cdd4; background: #f8f9fa; color: #30353a; }
.vbm-danger-button { border: 1px solid #edcfd4; background: #fff7f8; color: #b6374b; }
.vbm-danger-button:hover { border-color: #e2b7be; background: #fff1f3; }
.vbm-login-submit {
	width: 100%;
	min-height: 44px;
	padding: 0 16px;
}
.vbm-login-help {
	margin: 15px 0 0;
	color: #89929b;
	text-align: center;
	font-size: 11px;
}
.vbm-form-alert {
	margin: 0 0 18px;
	padding: 11px 12px;
	border: 1px solid #edcfd4;
	border-radius: 8px;
	background: #fff7f8;
	color: #a3293a;
	font-size: 12px;
	line-height: 1.45;
}

@media (max-width: 1050px) {
	.vbm-login-layout { grid-template-columns: 1fr 1fr; }
	.vbm-login-visual { padding: 38px; }
	.vbm-login-points { grid-template-columns: 1fr; }
	.vbm-login-points div { min-height: auto; }
}

@media (max-width: 760px) {
	.vbm-login-layout { display: block; min-height: 100vh; padding: 20px; background: linear-gradient(145deg, #28233a 0%, #4a328f 100%); }
	.vbm-login-visual { display: none; }
	.vbm-login-panel { min-height: calc(100vh - 40px); padding: 0; background: transparent; }
	.vbm-login-card { width: 100%; border-radius: 10px; }
	.vbm-login-card-head { padding: 20px; }
	.vbm-login-card-body { padding: 20px; }
	.vbm-mobile-logo { display: block; }
	.vbm-login-heading-row { display: block; }
	.vbm-login-access-badge { margin-top: 14px; }
}
