@charset "utf-8";
/* CSS Document */

body {
	font-family: 'Segoe UI', sans-serif;
	font-size: 12px;
	background: #f4f4f4;
	padding: 10px;
}

form {
	max-width: 400px;
	margin: auto;
	padding: 15px;
	border: 2px solid #7b2cbf;
	border-radius: 8px;
	background: #fff;
}

h2 {
	text-align: center;
	font-size: 16px;
	color: #3c096c;
	margin-bottom: 15px;
}

.section-title {
	font-weight: bold;
	color: #5f0f40;
	margin-top: 10px;
}

label {
	display: block;
	margin-top: 6px;
	color: #3c096c;
}

input[type="text"],
input[type="date"],
input[type="number"],
input[type="file"],
input[type="tel"],
select {
	width: 100%;
	padding: 5px;
	font-size: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-top: 2px;
}

.radio-group {
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
}

.radio-group label {
	flex: 1;
	text-align: center;
	padding: 5px;
	border: 1px solid #7209b7;
	border-radius: 5px;
	cursor: pointer;
	background: #e0aaff;
	margin-right: 5px;
}

.radio-group input[type="radio"] {
	display: none;
}

.radio-group input[type="radio"]:checked + label {
	background: #c77dff;
	color: #fff;
	border-color: #3f37c9;
}

button {
	width: 100%;
	background: #5f0f40;
	color: white;
	border: none;
	padding: 8px;
	border-radius: 5px;
	margin-top: 15px;
	font-size: 13px;
	cursor: pointer;
}

button:hover {
	background: #3c096c;
}

.hidden {
	display: none;
}

