:root {
	--blue: #1e4eb7;
	--gold: #e4d71a;
	--green: #189a34;
	--bg: #0f172a;
	--card: #111827;
	--text: #ffffff;
	--muted: #9ca3af;
	--sidebar-width: 260px;
	--sidebar-shift: 0px;
	--sidebar-press: 0px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	background: radial-gradient(circle at 20% 20%, rgba(30, 78, 183, 0.15), transparent 35%),
				radial-gradient(circle at 80% 10%, rgba(228, 215, 26, 0.12), transparent 32%),
				radial-gradient(circle at 50% 80%, rgba(24, 154, 52, 0.15), transparent 38%),
				var(--bg);
	color: var(--text);
	font-family: "Segoe UI", Tahoma, sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	padding: 3rem 1.5rem;
	overflow-x: hidden;
	position: relative;
	z-index: 0;
}

.card {
	background: var(--card);
	max-width: 760px;
	width: 100%;
	padding: 2.5rem 2rem;
	border-radius: 18px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
	z-index: 10;
}

h1 {
	font-size: clamp(2rem, 3vw + 1rem, 3rem);
	letter-spacing: 0.02em;
	margin-bottom: 1rem;
	z-index: 11;
}

p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--muted);
	z-index: 11;
}

a {
	color: #2563eb;
}

.flag {
	position: fixed;
	bottom: -8vh;
	left: -30vw;
	width: 100vw;
	height: 20vh;
	transform: rotate(45deg);
	transform-origin: center;
	display: flex;
	flex-direction: column;
	z-index: 5;
	pointer-events: none;
}

.flag .stripe {
	flex: 1;
	min-height: 0;
}

.flag .blue { background: var(--blue); }
.flag .gold { background: var(--gold); }
.flag .green { background: var(--green); }

@media (max-width: 640px) {
	.card {
		padding: 2rem 1.5rem;
	}
}

.auth-bar {
	position: fixed;
	top: 1.2rem;
	right: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	z-index: 20;
}

.auth-user {
	color: var(--text);
	font-size: 0.95rem;
	-webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.7);
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.85), 1px -1px 0 rgba(0, 0, 0, 0.85), -1px 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.85), 0 2px 4px rgba(0, 0, 0, 0.45);
}
