body {
	background: linear-gradient(to right, #ff8c00, #ffaf00);
	font-family: 'Open Sans', sans-serif;
  background-image: url("bg.png"); /* Add subtle image */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Don't repeat the image */
  background-size: cover; /* Cover the entire background */
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: rgb(0, 0, 0); /* Text color */
}

.container {
	width: 500px;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h1 {
	font-size: 32px;
	font-weight: bold;
	color: #ff8c00;
	text-align: center;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 20px;
}

label {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	display: block;
	margin-bottom: 5px;
}

input[type="text"],
input[type="tel"],
input[type="number"],
textarea {
	width: 100%;
	padding: 10px;
	border: none;
	border-radius: 5px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	color: #333;
}

select {
	width: 100%;
	padding: 10px;
	border: none;
	border-radius: 5px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	color: #333;
}

.radio-group {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

input[type="radio"] {
	margin-right: 5px;
}

input[type="submit"] {
	width: 100%;
	padding: 10px;
	background-color: #ff8c00;
	border: none;
	border-radius: 5px;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
	background-color: #ff6f00;
}
p{
	text-align: center;
}
h3{
	text-align: center;
}