* { margin: 0; padding: 0; box-sizing: border-box; }
body {
	background: #0b0b0b url("../imgs/topo-pattern.svg") repeat center center;
	background-size: 600px 600px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 16px;
	color: #fff;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.announcement-bar {
	background: #836dd4;
	width: 100%;
	flex-shrink: 0;
}
.announcement-bar .bar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	gap: 15px;
	text-align: center;
	flex-wrap: wrap;
	max-width: 1240px;
	margin: 0 auto;
}
.announcement-bar p {
	font-size: 14px;
	line-height: 17px;
	color: #fff;
	margin: 0;
}
.announcement-bar .bar-btn {
	padding: 6px 15px;
	font-size: 12px;
	color: #333;
	background: #fff;
	line-height: normal;
	border-radius: 4px;
}
.auth-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}
.auth-card {

	padding: 32px 36px;
	width: 100%;
	max-width: 430px;
}
.auth-card .logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.auth-card .logo img {
	height: 80px;
	width: auto;
	display: block;
}
.auth-card h2 {
	text-align: center;
	font-size: 22px;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	margin-bottom: 4px;
}
.auth-card p.subtitle {
	text-align: center;
	color: rgba(255,255,255,0.5);
	font-size: 13px;
	margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 6px;
	color: rgba(255,255,255,0.8);
}
.form-group input {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 8px;
	background: rgba(255,255,255,0.04);
	color: #fff;
	font-size: 14px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s;
}
.form-group input:focus { border-color: #836dd4; }
.btn-submit {
	width: 100%;
	padding: 11px;
	margin-top: 4px;
	background: #836dd4;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s;
}
.btn-submit:hover { background: #7059c4; }
.auth-footer {
	text-align: center;
	margin-top: 16px;
	font-size: 13px;
	color: rgba(255,255,255,0.5);
}
.auth-footer a { color: #a29bfe; }
.auth-footer p + p { margin-top: 10px; }