body {
	background: url(/Assets/IMG/splash.png) no-repeat center center fixed;
	background-size: cover;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.register-wrapper {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
}

.register-content {
	text-align: center;
	color: white;
}

.register-content h1 {
	font-size: 62px;
	font-weight: 700;
	margin-bottom: 21px;
}

.register-content p {
	font-size: 23px;
	margin-bottom: 42px;
}

.button-group {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.button-group a {
	padding: 13px 31px;
	font-size: 21px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	transition: 0.15s;
}

.btn-primary {
	background: #00b300;
	color: #fff;
	border: none;
}

.btn-primary:hover {
	background: #009900;
	color: #fff;
}

.btn-secondary {
	background: #555;
	color: #fff;
	border: none;
}

.btn-secondary:hover {
	background: #777;
	color: #fff;
}