body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	color: #2c3e50;
	min-height: 100vh;
	overflow-x: hidden;
}

.container {
	max-width: 900px;
	margin: 0 auto;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	padding: 40px;
}

h1, h2, h3 {
	text-align: center;
	color: #2c3e50;
	margin-bottom: 30px;
}

main {
	padding: 40px;
}

.errors {
	color: #e74c3c;
	list-style-type: none;
	padding: 0;
	margin: 15px 0;
	font-size: 15px;
	text-align: center;
}

form label {
	display: block;
	margin: 25px 0 20px;
	font-weight: 600;
	color: #2c3e50;
	font-size: 16px;
}

input {
	display: block;
	width: 100%;
	padding: 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	box-sizing: border-box;
	background: white;
	height: 50px; /* Uniform height */
}

textarea {
	width: 100%;
	padding: 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	box-sizing: border-box;
	background: white;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
	width: 100%;
	padding: 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	box-sizing: border-box;
	background: white;
	height: 50px; /* Uniform height */
}

form select {
	width: 100%;
	padding: 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	box-sizing: border-box;
	background: white;
	height: 50px; /* Uniform height */
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233497db'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
}

.btn-primary {
	margin-right: auto;
	margin-left: auto;
}

.checkbox-label,
.payment-option-label {
	display: flex;
	align-items: center;
	margin: 20px 0;
	font-size: 16px;
	cursor: pointer;
	flex-wrap: wrap;
}

.checkbox-label input[type="checkbox"],
.payment-option-label input[type="radio"] {
	width: 24px;
	height: 24px;
	margin-right: 15px;
	accent-color: #3498db;
	cursor: pointer;
	flex-shrink: 0;
}

button {
	background: #3498db;
	color: white;
	padding: 16px 50px;
	border: none;
	border-radius: 8px;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
	min-width: 250px;
}

button:hover {
	background: #2980b9;
}

.forgot-password {
	display: block;
	text-align: center;
	margin-top: 20px;
}

.policy-page .effective-date {
	text-align: center;
	font-style: italic;
	color: #666;
	margin-bottom: 20px;
}

.policy-list {
	list-style-type: decimal;
	padding-left: 20px;
	font-size: 16px;
	line-height: 1.8;
}

.policy-list li {
	margin-bottom: 40px;
	padding-left: 10px;
}

.policy-list h2 {
	text-align: left;
	font-size: 20px;
	margin-bottom: 10px;
	color: #3498db;
}

.policy-list p {
	margin: 10px 0;
	color: #333;
}

.policy-list ul {
	list-style-type: disc;
	padding-left: 30px;
	margin: 10px 0;
}

.policy-list ul li {
	margin-bottom: 10px;
}

.error-page {
	text-align: center;
}

.error-page p {
	font-size: 18px;
	margin: 20px 0;
}

.error-page button {
	margin-top: 20px;
}

@media (max-width: 768px) {  
	.container {
		max-width: 100%;
		padding: 20px;
		margin: 10px auto;
	}
   
	button {
		width: 100%;
		padding: 18px;
		min-width: auto;
	}

	.policy-list {
		font-size: 15px;
	}

	.policy-list h2 {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	form label {
		margin: 20px 0 6px;
		font-size: 15px;
	}

	.container {
		max-width: 100%;
		padding: 15px;
		margin: 0 auto;
	}

	h1, h2, h3 {
		font-size: 24px;
	}

	.policy-list {
		padding-left: 10px;
	}

	.policy-list ul {
		padding-left: 20px;
	}
}

footer {
	background-color: #333;
	color: white;
	padding: 10px;
	position: relative;
	width: 100%;
	bottom: 0;
}

footer a {
	color: #007bff;
	text-decoration: none;
}

.footer-split {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 15px;
}

.footer-split a {
	display: block;
	color: #ffffff;
	text-decoration: none;
	font-size: 1.3rem;
	margin: 10px;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.developed-by {
  margin-top: 16px;
  font-size: 0.85rem;
}

.developed-by a {
	display: inline;
}

.footer-logo {
	display: inline-block;
	max-height: 80px;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 480px) {
	.footer-split {
		flex-direction: column;
	}
}