.container {
	max-width: 600px;
	margin: 40px auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	padding: 20px;
}
h1 {
	font-size: 24px;
	color: #48a1cf;
	margin-bottom: 20px;
	text-align: center;
}
label {
	font-weight: bold;
	display: block;
	margin: 10px 0 5px;
}
input, select, textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
}
input:focus, select:focus, textarea:focus {
	border-color: #48a1cf;
	outline: none;
	box-shadow: 0 0 4px rgba(0, 120, 215, 0.4);
}
textarea {
	height: 100px;
	resize: vertical;
}
.terms {
	border: 1px solid #ccc;
	padding: 10px;
	margin: 15px 0;
	height: 300px;
	overflow-y: scroll; /* Ensures the scrollbar is always visible */
	-webkit-overflow-scrolling: touch; /* Improves scrolling on touch devices */
	background-color: #f7f7f7;
	font-size: 14px;
	line-height: 1.5;
	scrollbar-width: thin; /* For Firefox */
	scrollbar-color: #ccc #f7f7f7; /* For Firefox */
}

/* For WebKit browsers like Safari and Chrome */
.terms::-webkit-scrollbar {
	width: 10px;
}

.terms::-webkit-scrollbar-track {
	background: #f7f7f7;
}

.terms::-webkit-scrollbar-thumb {
	background-color: #555;
	border-radius: 5px;
	border: 2px solid #f7f7f7;
}
.checkbox-container {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.checkbox-container input[type="checkbox"] {
	margin-right: 10px;
}

button {
	background-color: #48a1cf;
	color: #fff;
	padding: 12px;
	border: none;
	border-radius: 4px;
	font-size: 18px;
	cursor: pointer;
	width: 100%;
}
button:hover {
	background-color: #005bb5;
}
.terms p {
	margin-bottom: 15px;
}