.toast {
	position: fixed;
	top: 22px;
	right: 22px;
	z-index: 999;
	max-width: 360px;
	border-radius: 18px;
	padding: 16px 20px;
	font-size: 0.95rem;
	line-height: 1.4;
	backdrop-filter: blur(14px);
	box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
	border-left: 4px solid var(--accent);
	border: 1px solid rgba(255, 255, 255, 0.12);
}
.toast.info {background: rgba(255, 255, 255, 0.08); color: var(--text);}
.toast.success {background: rgba(216, 180, 79, 0.18); color: #f8f3dc;}
.toast.error {background: rgba(239, 111, 111, 0.2); color: #ffecec;}
/* Modern GSKT theme */
:root {
	--max-width:860px;
	--accent: #d8b44f;
	--accent-strong: #b18820;
	--surface: #16130f;
	--surface-alt: #1f1a14;
	--bg: #090704;
	--text: #f6f1e6;
	--muted: #b29f7a;
	--border: rgba(216,180,79,0.18);
	--error: #ef6f6f;
	--bg-light: #f3f1ec;
	--surface-light: #ffffff;
	--surface-alt-light: #f9f7f3;
	--text-light: #14212a;
	--muted-light: #5f6570;
	--border-light: rgba(20, 24, 28, 0.12);
	--accent-light: #a17f4f;
	--accent-strong-light: #855f37;
	--error-light: #c94b4c;
}

* {box-sizing:border-box;}
html, body {min-height:100%;}
body {
	margin:0;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: radial-gradient(circle at top, rgba(216,180,79,0.12), transparent 28%),
				linear-gradient(180deg, #120f0b 0%, #090704 100%);
	color: var(--text);
}

body.theme-light {
	background: linear-gradient(180deg, #f8f6f2 0%, #f1ede8 100%);
	color: var(--text-light);
	--accent: #a17f4f;
	--accent-strong: #855f37;
	--surface: #ffffff;
	--surface-alt: #f9f7f3;
	--bg: #f3f1ec;
	--text: #14212a;
	--muted: #5f6570;
	--border: rgba(20, 24, 28, 0.12);
	--error: #c94b4c;
}

body.theme-light .toast {
	background-color: rgba(255, 255, 255, 0.96);
	color: var(--text-light);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body.theme-light .toast.success {
	border-color: #5a9b63;
}

body.theme-light .toast.error {
	border-color: #b4474a;
}
.container {
	max-width: var(--max-width);
	margin: 24px auto;
	padding: 0 16px 24px;
}
.site-header {
	background: rgba(10, 8, 6, 0.96);
	border-bottom: 1px solid rgba(255,255,255,0.06);
	position: sticky;
	top: 0;
	z-index: 10;
}

body.theme-light .site-header {
	background: rgba(243, 241, 236, 0.98);
	border-bottom-color: rgba(20, 24, 28, 0.08);
}

body.theme-light .site-header {
	background: rgba(243, 241, 236, 0.98);
	border-bottom-color: rgba(20, 24, 28, 0.08);
}
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 0;
}
.logo img {
	height: 200px;
	max-width: 100%;
	object-fit: contain;
}
@media (max-width:720px) {.logo img{height:140px;}}
@media (max-width:480px) {.logo img{height:100px;}}
.card {
	background: rgba(20, 17, 13, 0.95);
	border: 1px solid var(--border);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
	border-radius: 28px;
	padding: 32px;
	margin-top: 34px;
}

body.theme-light .card {
	background: rgba(255, 255, 255, 0.98);
	border-color: rgba(20, 24, 28, 0.12);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

body.theme-light .card {
	background: rgba(255, 255, 255, 0.98);
	border-color: rgba(20, 24, 28, 0.12);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}
.card h1 {
	margin: 0 0 24px;
	font-size: clamp(1.8rem, 2.4vw, 2.6rem);
	letter-spacing: 0.02em;
	color: var(--text);
}
form {display:flex;flex-direction:column;gap:18px;}
label {display:block;color:var(--muted);font-size:0.95rem;font-weight:600;letter-spacing:0.01em;}
input[type="tel"],input[type="date"],input[type="text"],input[type="email"],select,textarea {
	width:100%;
	border:1px solid rgba(255,255,255,0.12);
	border-radius:16px;
	background: rgba(255,255,255,0.04);
	color: var(--text);
	padding: 14px 16px;
	font-size: 1rem;
	line-height: 1.5;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}
select { appearance: none; -webkit-appearance: none; -moz-appearance: none; }
select option { color: #111; }
textarea {min-height: 120px; resize: vertical;}
input:focus, textarea:focus, select:focus {
	outline: none;
	border-color: rgba(216,180,79,0.65);
	box-shadow: 0 0 0 4px rgba(216,180,79,0.1);
}
button {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:0.5rem;
	border:none;
	border-radius:999px;
	color:#111;
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	padding: 14px 20px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 150ms ease, filter 150ms ease;
}
button:hover {transform: translateY(-1px); filter: brightness(1.03);}
.errors {
	background: rgba(239,111,111,0.12);
	border: 1px solid rgba(239,111,111,0.25);
	color: #f7eaea;
	padding: 14px 16px;
	border-radius: 16px;
}
.muted {color: var(--muted);font-size:0.95rem;}
.form-caption {color: var(--muted);font-size:0.95rem;line-height:1.55;margin-top:-8px;}
.site-footer {margin-top:32px;padding:16px 0;text-align:center;color:rgba(255,255,255,0.55);font-size:0.95rem;}
.field-group {display:grid;grid-template-columns:1fr 1fr;gap:16px;}
@media (max-width:720px) {.field-group{grid-template-columns:1fr;}}
@media (max-width:480px) {.container{margin:10px auto;padding:0 12px;} .logo img{height:56px;} .card{padding:24px; width: 100%; max-width: 100%; margin: 10px auto;}}
