/* Custom CSS - No external libraries */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.student-course {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 80px;
	padding-bottom: 80px;
}
.student-course-form {
	background-color: white;
	border-radius: 16px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	width: 100%;
	max-width: 600px;
	overflow: hidden;
	position: relative;
}
.form-header {
	background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
	padding: 30px;
	color: white;
	text-align: center;
	position: relative;
}
.form-header h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
}
.form-header p {
	font-size: 16px;
	opacity: 0.9;
}
.form-body {
	padding: 30px;
}
.form-group {
	margin-bottom: 24px;
}
.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
	font-size: 15px;
}
.form-control {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e1e1e1;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
}
.form-control:focus {
	border-color: #4776E6;
	outline: none;
	box-shadow: 0 0 0 3px rgba(71, 118, 230, 0.2);
}
.checkbox-group {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}
.checkbox-group input {
	margin-right: 10px;
	width: 18px;
	height: 18px;
	accent-color: #4776E6;
}
.checkbox-group label {
	font-size: 15px;
	color: #555;
}
.price-tag {
	background-color: #f0f5ff;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 24px;
	display: block; /* ❌ Removed flex layout */
}
.price-tag .line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.price-tag .label {
	font-weight: 600;
	color: #333;
	font-size: 16px;
}
.price-tag .amount {
	font-size: 24px;
	font-weight: 700;
	color: #4776E6;
}
.submit-btn {
	background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 16px;
	font-size: 18px;
	font-weight: 600;
	width: 100%;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(71, 118, 230, 0.3);
}
.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(71, 118, 230, 0.4);
}
.form-footer {
	text-align: center;
	padding: 0 30px 30px;
	color: #666;
	font-size: 14px;
}
.form-footer a {
	color: #4776E6;
	text-decoration: none;
	font-weight: 600;
}
.form-footer a:hover {
	text-decoration: underline;
}
.badge {
	position: absolute;
	top: 10px;
	right: 0px;
	background-color: #FF3860;
	color: white;
	font-size: 14px;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 20px;
	transform: rotate(15deg);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
/* Decorative elements */
.decoration {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}
.decoration-1 {
	width: 60px;
	height: 60px;
	top: 20px;
	left: 20px;
}
.decoration-2 {
	width: 40px;
	height: 40px;
	bottom: 30px;
	right: 40px;
}
/* Address fields styling */
.address-container {
	border: 1px solid #e1e1e1;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 24px;
	background-color: #fafafa;
}
.address-container h3 {
	margin-bottom: 16px;
	color: #333;
	font-size: 18px;
}
.address-row {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}
.address-col {
	flex: 1;
}
/* Responsive styles */
@media (max-width: 768px) {
	.student-course-form {
		max-width: 100%;
	}
	.form-header h2 {
		font-size: 24px;
	}
	.form-body, .form-header, .form-footer {
		padding: 20px;
	}
	.address-row {
		flex-direction: column;
		gap: 8px;
	}
}