* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Arial', sans-serif;
	background-color: #f0f2f5;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

.container {
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	max-width: 500px;
	width: 100%;
	text-align: center;
}

h1 {
	font-size: 1.5em;
	margin-bottom: 20px;
	color: #333;
}

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

label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #555;
}

input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1em;
	transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
	border-color: #007bff;
	outline: none;
}

textarea {
	resize: vertical;
}

.radio-group {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.radio-group label {
	margin-right: 20px; /* Space between label and next radio input */
	margin-left: 5px;  /* Space between radio button and its label */
}

input[type="radio"] {
	margin-right: 5px; /* Reducing the space between the radio button and the label */
	margin-left: 0;    /* Removing default margin */
}

button {
	background-color: #007bff;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 1em;
	cursor: pointer;
	transition: background-color 0.3s;
}

button:hover {
	background-color: #0056b3;
}

@media (max-width: 768px) {
	.container {
		padding: 20px;
	}
}

	/* Styling for the expandable panel */
.tooltip-panel {
	display: none;
	background-color: #f1f1f1;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-top: 10px;
}
.tooltip-toggle {
	cursor: pointer;
	color: #007bff;
	background: none;
	border: none;
	font-size: 0.9em;
}
.tooltip-toggle:hover {
	text-decoration: underline;
}
.tooltip-content {
	font-size: 0.85em;
	color: #555;
}

