.reg-page {
	display: flex;
	min-height: 100vh;
}

/* --- Left panel --- */
.reg-left {
	width: 39%;
	max-height: calc(100dvh - 0px);
	display: flex;
	flex-direction: column;
	padding: 30px;
	position: relative;
	overflow: hidden;
}
.reg-left > div{
	height:100%;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
}

.reg-logo-link {
	display: inline-block;
	flex: none;
}
.reg-logo {
	max-height: 50px;
	width: auto;
	filter: brightness(0) invert(1);
}
.reg-left-content {
	flex: none;
	padding: 50px 0 30px;
}
.reg-left-content h2 {
	font-size: 28px;
	line-height: 1.2em;
	margin-bottom: 16px;
}
.reg-left-content p {
	font-size: 14px;
	line-height: 1.7em;
	opacity: 0.9;
}
.reg-usp-list {
	list-style: none;
	padding: 0;
	margin: 20px 0 0;
}
.reg-usp-list li {
	padding: 5px 0;
	font-size: 14px;
	font-weight: 600;
}
.reg-usp-list li i {
	margin-right: 8px;
}
.reg-mockup {
	width: auto;
	max-width: 320px;
	margin: 0 auto;
	display: block;
	flex: 1;
	max-height: 45dvh;
	filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* --- Right panel --- */
.reg-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 50px 40px;
	background: #fff;
	overflow-y: auto;
}
.reg-form-wrap {
	width: 100%;
	max-width: 480px;
}

/* --- Header --- */
.reg-form-header {
	margin-bottom: 28px;
}
.reg-form-header h2 {
	font-size: 26px;
	font-weight: 800;
	color: #111;
	margin-bottom: 6px;
}
.reg-subtitle {
	font-size: 14px;
	color: #555;
	margin: 0;
	line-height: 1.5em;
}

/* --- Form sections --- */
.reg-page .registerForm h3 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #888;
	margin: 22px 0 10px;
	padding-bottom: 6px;
	border-bottom: 1px solid #eee;
}
.reg-page .registerForm h3:first-of-type {
	margin-top: 0;
}

/* --- Labels --- */
.reg-page .registerForm label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
	padding-left: 0;
}
.reg-page .req-legend {
	font-size: 12px;
	color: #999;
	margin: 0 0 18px;
}
.reg-page .req-star {
	color: #c0392b;
	font-weight: 700;
}

/* --- Inputs: override global pink background --- */
.reg-page .registerForm input[type="text"],
.reg-page .registerForm input[type="email"],
.reg-page .registerForm input[type="tel"],
.reg-page .registerForm input[type="password"] {
	width: 100%;
	padding: 10px 14px;
	margin-bottom: 14px;
	background: #fff;
	border: 1.5px solid #d0d5dd;
	border-radius: 8px;
	font-size: 14px;
	color: #111;
	box-sizing: border-box;
	transition: border-color .15s;
	box-shadow: none;
}
.reg-page .registerForm input[type="text"]:focus,
.reg-page .registerForm input[type="email"]:focus,
.reg-page .registerForm input[type="tel"]:focus,
.reg-page .registerForm input[type="password"]:focus {
	border-color: #880000;
	outline: none;
	box-shadow: 0 0 0 3px rgba(136,0,0,0.08);
}
.reg-page .registerForm input::placeholder {
	color: #aaa;
}

/* --- Password requirements --- */
.reg-page .password-requirements {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: -6px 0 14px;
	padding: 10px 12px;
	background: #f7f7f7;
	border-radius: 8px;
	border: 1px solid #eee;
}
.reg-page .password-requirements .req-item {
	font-size: 12px;
	color: #bbb;
}
.reg-page .password-requirements .req-item i {
	font-size: 7px;
	vertical-align: middle;
	margin-right: 4px;
}
.reg-page .password-requirements .req-item.valid {
	color: #27ae60;
}

/* --- Stap indicator --- */
.reg-steps {
	margin-bottom: 24px;
}
.reg-step-indicator {
	display: flex;
	align-items: center;
	gap: 0;
	margin-bottom: 6px;
}
.reg-step-dot {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #e5e7eb;
	color: #aaa;
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background .2s, color .2s;
}
.reg-step-dot.active {
	background: #880000;
	color: #fff;
}
.reg-step-dot.done {
	background: #27ae60;
	color: #fff;
}
.reg-step-line {
	flex: 1;
	height: 2px;
	background: #e5e7eb;
	margin: 0 6px;
}
.reg-step-labels {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #888;
}

/* --- Ongeldige velden --- */
.reg-page .registerForm input.reg-invalid {
	border-color: #d22d16 !important;
	box-shadow: 0 0 0 3px rgba(210,45,22,0.1) !important;
}

/* --- Submit button --- */
.reg-submit-row {
	margin-top: 8px;
	text-align: center;
}
.reg-submit-row .button {
	width: 100%;
	box-sizing: border-box;
	padding: 13px;
	font-size: 15px;
	border-radius: 8px;
}
.reg-back-btn {
	display: inline-block;
	margin-top: 12px;
	background: none;
	border: none;
	color: #888;
	font-size: 13px;
	cursor: pointer;
	padding: 0;
}
.reg-back-btn:hover {
	color: #333;
}
.reg-back-btn i {
	margin-right: 5px;
}
.reg-login-link {
	font-size: 13px;
	color: #555;
	margin: 16px 0 0;
	text-align: center;
}
.reg-login-link a {
	color: #880000;
	font-weight: 600;
	text-decoration: none;
}
.reg-login-link a:hover {
	text-decoration: underline;
}

/* --- Messages --- */
.reg-page #registerMessage .viewer_error,
.reg-page #registerMessage .viewer_message {
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 16px;
	font-size: 14px;
	text-align: left;
	color: white;
}
.reg-page #registerMessage .viewer_error {
	background-color: #d22d16;
}
.reg-page #registerMessage .viewer_message {
	background-color: #27ae60;
}

footer{
	display:none;
}

/* --- Responsive --- */
@media (max-width: 900px) {
	.reg-left {
		display: none;
	}
	.reg-right {
		padding: 30px 20px;
		align-items: flex-start;
	}
}
