body {
	margin: 0;
}
.page-content {
	width: 100%;
	margin: 0 auto;
	background-color: #3562a7;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
}
.form-v8-content  {
	background: #fff;
	width: 100%;
	max-width: 937px;
	border-radius: 8px;
	box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
	margin: 20px;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
}
.form-v8-content .form-left img {
	width: 100%;
	border-radius: 8px 8px 0 0;
}
.form-v8-content .form-right {
    padding: 20px;
	width: 100%;
	background: #3d5983;
	border-radius: 0 0 8px 8px;
}
.form-v8-content .tab {
	display: flex;
	justify-content: space-between;
	margin: 5px 0 20px;
}
.form-v8-content .tab .tablinks {
	font-size: 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.form-v8-content .tab .tablinks.active {
	font-weight: 700;
	color: #fff;
	border-bottom-color: #30e1df;
}
.form-v8-content .form-detail {
	padding:  0 20px;
}
.form-v8-content .form-row {
	width: 100%;
	margin-bottom: 15px;
}
.form-v8-content .form-row .label {
	font-size: 14px;
	color: #fff;
	display: block;
	margin-bottom: 5px;
}
.form-v8-content .form-detail input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	background: #fff;
	font-size: 16px;
	color: #000;
	border-radius: 5px;
}
.form-v8-content .form-detail .register {
	background: #fff;
	border-radius: 5px;
	width: 100%;
	border: none;
	padding: 10px;
	cursor: pointer;
	font-weight: 700;
	font-size: 16px;
}
.form-v8-content .form-detail .register:hover {
	background: #ccc;
}
.footer {
	text-align: center;
	padding: 15px;
	background: #3d5983;
	color: #fff;
	font-size: 14px;
	border-radius: 0 0 8px 8px;
	box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.footer a {
	color: #30e1df;
	text-decoration: none;
}
.footer a:hover {
	text-decoration: underline;
}
.footer .social-icons {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}
.footer .social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	color: #3d5983;
	font-size: 18px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
	transition: background 0.3s, color 0.3s;
}
.footer .social-icons a:hover {
	background: #30e1df;
	color: #fff;
}
/* Menghapus garis vertikal (|) */
.form-v8-content .form-right::before, .form-v8-content .form-right::after {
	display: none;
}
/* Responsive */
@media screen and (max-width: 991px) {
	.form-v8-content {
		margin: 20px;
	}
	.footer {
		flex-direction: column;
		align-items: center;
	}
	.footer .social-icons {
		justify-content: center;
	}
}
@media screen and (max-width: 768px) {
	.form-v8-content .tab {
		flex-direction: column;
	}
	.form-v8-content .tab .tablinks {
		font-size: 16px;
	}
	.footer {
		text-align: center;
	}
}
@media screen and (max-width: 480px) {
	.form-v8-content {
		padding: 10px;
	}
	.form-v8-content .form-detail input {
		font-size: 14px;
	}
	.form-v8-content .form-detail .register {
		font-size: 14px;
	}
	.footer {
		padding: 10px;
		font-size: 12px;
		flex-direction: column;
		align-items: center;
	}
	.footer .social-icons a {
		width: 30px;
		height: 30px;
		font-size: 14px;
	}
}
