* { box-sizing: border-box; margin: 0; padding: 0; }
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: linear-gradient(160deg, #f5f7fa, #e8eef4);
	color: #1a2a3a;
	min-height: 100vh;
}
.reg-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	background: #fff;
	border-bottom: 1px solid #e2e8f0;
}
.reg-logo {
	font-weight: 700;
	color: #2c5f2d;
	text-decoration: none;
	letter-spacing: 0.04em;
}
.reg-back { color: #475569; text-decoration: none; font-size: 14px; }
.reg-main {
	max-width: 440px;
	margin: 48px auto;
	padding: 32px 24px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.reg-main h1 { font-size: 28px; margin-bottom: 8px; }
.reg-lead { color: #64748b; margin-bottom: 28px; line-height: 1.5; }
.reg-form label {
	display: block;
	margin-bottom: 18px;
}
.reg-form label span {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #475569;
}
.reg-form input,
.reg-form select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	font-size: 16px;
}
.reg-form button[type='submit'] {
	width: 100%;
	margin-top: 8px;
	padding: 14px;
	background: #2c5f2d;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}
.reg-form button[type='submit']:hover { background: #1e4220; }
.reg-form button:disabled { opacity: 0.6; cursor: wait; }
#form-status .success-message {
	background: #d1fae5;
	color: #065f46;
	padding: 14px;
	border-radius: 10px;
	margin-top: 16px;
	font-size: 14px;
}
#form-status .error-message {
	background: #fee2e2;
	color: #991b1b;
	padding: 14px;
	border-radius: 10px;
	margin-top: 16px;
	font-size: 14px;
}
.reg-note {
	margin-top: 20px;
	font-size: 12px;
	color: #94a3b8;
	text-align: center;
}
