* { box-sizing: border-box; }
body {
	margin: 0;
	background: #f7f8fa;
	color: #24292e;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
.header-bar {
	background: #24292e;
	color: #fff;
}
.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 20px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
}
.login-wrap {
	display: flex;
	justify-content: center;
	padding: 64px 16px;
}
.login-box {
	width: 100%;
	max-width: 380px;
	background: #fff;
	border: 1px solid #d8dee4;
	border-radius: 6px;
	padding: 28px 32px 32px;
	box-shadow: 0 1px 3px rgba(27,31,35,0.08);
}
.login-box h2 {
	margin: 0 0 20px;
	font-size: 20px;
	text-align: center;
	font-weight: 600;
}
.field {
	margin-bottom: 16px;
}
.field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 4px;
}
.field input[type="text"],
.field input[type="password"] {
	width: 100%;
	padding: 8px 10px;
	font-size: 14px;
	border: 1px solid #d8dee4;
	border-radius: 5px;
}
.field.remember {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
}
.field.remember label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: normal;
}
.forgot {
	color: #316dca;
	text-decoration: none;
	font-size: 13px;
}
.btn-primary {
	width: 100%;
	padding: 9px 0;
	background: #609926;
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}
.btn-primary:hover { background: #538021; }
.alt-links {
	margin-top: 18px;
	text-align: center;
	font-size: 13px;
}
.alt-links a {
	color: #316dca;
	text-decoration: none;
}
footer {
	border-top: 1px solid #e1e4e8;
	margin-top: 40px;
	padding: 16px 0 40px;
	font-size: 12px;
	color: #6a737d;
}
.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
footer a {
	color: #6a737d;
}
.sep { margin: 0 6px; }
