body {
	background: #0a0a0a;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding: 60px 20px;
}

.register-container {
	max-width: 900px;
	margin: 35px auto;
	width: 100%;
}

.register-title {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
}

.register-subtitle {
	font-size: 20px;
	color: #aaa;
	margin-bottom: 40px;
}

.form-group {
	margin-bottom: 32px;
}

#captcha {
	margin-bottom: 0px;
}

.form-group label {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 12px;
}

.form-group input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #444;
	border-radius: 4px;
	font-size: 16px;
	font-family: inherit;
	background: #1a1a1a;
	color: #fff;
}

.form-group input::placeholder {
	color: #666;
}

.form-group input:focus {
	outline: none;
	border-color: #4a148c;
	background: #1a1a1a;
}

.terms-text {
	font-size: 14px;
	color: #aaa;
	margin: 16px 0;
	line-height: 1.6;
}

.terms-text a {
	color: #4a148c;
	text-decoration: underline;
}

.btn-create {
	width: 100%;
	padding: 16px;
	background: #2a2a2a;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.15s;
	margin-bottom: 24px;
}

.btn-create:hover {
	background: #333;
}

.signin-link {
	text-align: center;
	font-size: 16px;
	color: #fff;
}

.signin-link a {
	color: #4a148c;
	text-decoration: underline;
}

.bottom-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;
	margin-bottom: 40px;
	gap: 20px;
}