body {
	background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
	min-height: 100vh;
	padding-bottom: 80px;
}

.reg-form {
	max-width: 600px;
	margin: 20px auto;
	padding: 0;
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.reg-form .w3-container {
	padding: 30px;
}

.section-header {
	background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
	color: white;
	padding: 15px 30px;
	margin: 0 0 20px 0;
	font-weight: 700;
	font-size: 1.1em;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-left: 5px solid #0D47A1;
}

.reg-form label {
	font-weight: 600;
	color: #2196F3;
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
}

.reg-form .w3-input,
.reg-form .w3-select {
	border: 2px solid #e0e0e0 !important;
	border-radius: 4px;
	transition: border-color 0.3s;
}

.reg-form .w3-input:focus,
.reg-form .w3-select:focus {
	border-color: #2196F3 !important;
	outline: none;
}

.reg-form .w3-button {
	border-radius: 4px;
	font-weight: 600;
	transition: all 0.3s;
}

.reg-form .w3-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.reg-form p {
	margin-bottom: 15px;
}