body {
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	margin: 0;
	background-color: #f0f0f0;
}

.form-container {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
	margin-top: 8px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	color: blue;
}

.form-row {
	display: flex;
	align-items: center;
}

label {
	font-weight: bold;
	width: 100px;
}

input[type='text'] {
	flex: 1;
	padding: 8px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
	outline: none;
	transition: border-color 0.3s;
}

input[type='text']:focus {
	border-color: #007bff;
}

.radio-container {
	display: flex;
	gap: 8px;
}

input[type='radio'] {
	margin-right: 4px;
}

button {
	padding: 8px 16px;
	font-size: 16px;
	border: none;
	border-radius: 6px;
	background-color: #007bff;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-right: 8px;
}

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

button:disabled {
	background-color: #e9ecef;
	color: #6c757d;
	cursor: not-allowed;
	border: 1px solid #ccc;
}
