* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.construction-appointment-wrapper {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 90px;
	padding-bottom: 90px;
}
.appointment-form-container {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	padding: 40px;
	width: 100%;
	max-width: 500px;
	position: relative;
	overflow: hidden;
}
.appointment-form-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(135deg, #0191db 0%, #147db3 100%);
}
.construction-heading-primary {
	font-size: 2.2rem;
	font-weight: 700;
	color: #2c3e50;
	text-align: center;
	margin-bottom: 12px;
	letter-spacing: 1px;
}
.construction-subheading-text {
	font-size: 1.1rem;
	color: #7f8c8d;
	text-align: center;
	margin-bottom: 35px;
	font-weight: 400;
	letter-spacing: 1px;
}
.appointment-booking-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.input-field-wrapper-custom {
	position: relative;
}
.form-input-field-styled {
	width: 100%;
	padding: 18px 20px;
	border: 2px solid #e1e8ed;
	border-radius: 12px;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
	background: #fafbfc;
	letter-spacing: 1px;
}
.form-input-field-styled:focus {
	outline: none;
	border-color: #667eea;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.form-input-field-styled::placeholder {
	color: #95a5a6;
	font-weight: 400;
}
.mobile-number-input-restricted {
	width: 100%;
	padding: 18px 20px;
	border: 2px solid #e1e8ed;
	border-radius: 12px;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
	background: #fafbfc;
	letter-spacing: 1px;
}
.mobile-number-input-restricted:focus {
	outline: none;
	border-color: #667eea;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.mobile-number-input-restricted::placeholder {
	color: #95a5a6;
	font-weight: 400;
}
.construction-submit-button {
	background: linear-gradient(135deg, #0191db 0%, #147db3 100%
100%
);
	color: white;
	border: none;
	padding: 18px 30px;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 10px;
}
.construction-submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}
.construction-submit-button:active {
	transform: translateY(0);
}
.privacy-policy-confirmation-text {
	font-size: 0.85rem;
	color: #7f8c8d;
	text-align: center;
	margin-top: 20px;
	line-height: 1.5;
	letter-spacing: 1px;
}
.privacy-policy-link-styled {
	color: #667eea;
	text-decoration: none;
	font-weight: 500;
}
.privacy-policy-link-styled:hover {
	text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 768px) {
	.construction-appointment-wrapper {
		padding: 15px;
	}
	.appointment-form-container {
		padding: 30px 25px;
	}
	.construction-heading-primary {
		font-size: 1.8rem;
	}
	.construction-subheading-text {
		font-size: 1rem;
	}
	.form-input-field-styled,
	.mobile-number-input-restricted {
		padding: 16px 18px;
	}
	.construction-submit-button {
		padding: 16px 25px;
		font-size: 1rem;
	}
}
@media (max-width: 480px) {
	.appointment-form-container {
		padding: 25px 20px;
	}
	.construction-heading-primary {
		font-size: 1.6rem;
	}
	.construction-subheading-text {
		font-size: 0.95rem;
		margin-bottom: 30px;
	}
	.form-input-field-styled,
	.mobile-number-input-restricted {
		padding: 15px 16px;
		font-size: 0.95rem;
	}
	.construction-submit-button {
		padding: 15px 20px;
		font-size: 0.95rem;
	}
	.privacy-policy-confirmation-text {
		font-size: 0.8rem;
	}
}