.LoginPage {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: linear-gradient(135deg, #2A1258 0%, #4E46E8 45%, #74DCEC 100%);
}
.LoginModule {
	width: 100%;
	max-width: 420px;
	background: var(--surface);
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(42,18,88,.35);
	padding: 36px 32px 24px;
}
.LoginBrand { text-align: center; margin-bottom: 28px; }
.brand-mark {
	width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 14px;
	display: grid; place-items: center;
	background: linear-gradient(145deg, #A78BFA 0%, #4E46E8 52%, #2DD4BF 100%);
	box-shadow: 0 6px 18px rgba(78,70,232,.38);
}
.brand-letter { font-size: 28px; font-weight: 700; color: #fff; }
.brand-wordmark { display: flex; align-items: baseline; justify-content: center; gap: 0; }
.brand-asystir { font-size: 26px; font-weight: 700; color: var(--ink); letter-spacing: -.03em; }
.brand-hr { font-size: 26px; font-weight: 700; color: var(--brand); margin-left: 6px; letter-spacing: .04em; }
.LoginTagline { font-size: 13px; color: var(--ink-3); margin-top: 8px; }
.LoginBox h2 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.LoginHint { font-size: 13px; color: var(--ink-3); margin-bottom: 20px; }
.FormElement { margin-bottom: 16px; }
.FormElement label { display: block; font-size: 12px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.FormElement input {
	width: 100%; height: 42px; padding: 0 14px;
	border: 1px solid var(--border); border-radius: var(--r-btn);
	background: var(--surface-sunk);
}
.FormElement input:focus { outline: 2px solid var(--brand); border-color: transparent; }
.LoginError {
	background: var(--risk-tint); color: #A6402B;
	padding: 10px 12px; border-radius: 8px; font-size: 13px; margin-bottom: 12px;
}
.LoginBtn { width: 100%; justify-content: center; margin-top: 4px; }
.LoginFooter {
	display: flex; justify-content: space-between; margin-top: 24px;
	padding-top: 16px; border-top: 1px solid var(--border);
	font-size: 12px; color: var(--ink-3);
}
.spinner {
	width: 36px; height: 36px; border: 3px solid var(--brand-tint);
	border-top-color: var(--brand); border-radius: 50%;
	animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
