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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	min-height: 100vh;
	background-color: #71717a;
	background-size: cover;
	background-position: center;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 16px;
}

.form-wrapper {
	width: 100%;
	max-width: 900px;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	padding: 32px;
}

@media (min-width: 768px) {
	.form-wrapper {
		padding: 40px;
	}
}

.form-header {
	margin-bottom: 16px;
}

.logo-link {
	display: inline-block;
	margin-bottom: 12px;
}

.logo {
	max-width: 200px;
	display: block;
}

.form-title {
	font-size: 28px;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 8px;
}

.form-section {
	margin-bottom: 24px;
}

.label {
	display: block;
	color: #374151;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.required {
	color: #ef4444;
}

.input-text {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 16px;
	color: #1f2937;
	transition: all 0.2s ease;
	background-color: #ffffff;
}

.input-text:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.input-text::placeholder {
	color: #9ca3af;
}

.question-text {
	margin-bottom: 4px;
	color: #374151;
	line-height: 1.6;
	-webkit-user-select: none;
	user-select: none;
}

.question-text-bold {
	font-weight: 700;
	margin-bottom: 8px;
	color: #1f2937;
	-webkit-user-select: none;
	user-select: none;
}

.answer-label {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 16px;
	display: block;
}

.choice-list {
	list-style: none;
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
}

.choice-item {
	width: 100%;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	padding: 3px 12px;
	transition: background-color 0.2s ease;
}

.choice-item:last-child {
	border-bottom: none;
}

.choice-item:hover {
	background-color: #f9fafb;
}

.choice-input {
	width: 16px;
	height: 16px;
	cursor: pointer;
	accent-color: #2563eb;
}

.choice-label {
	flex: 1;
	padding: 12px 0 12px 12px;
	font-size: 14px;
	font-weight: 500;
	color: #1f2937;
	cursor: pointer;
	user-select: none;
}

.file-upload-section {
	margin-top: 32px;
}

.file-input-wrapper {
	display: flex;
	width: 100%;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	overflow: hidden;
}

.file-input {
	display: none;
}

.file-input-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	background-color: #1f2937;
	color: white;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease;
	border: none;
}

.file-input-label:hover {
	background-color: #374151;
}

.file-input:focus + .file-input-label {
	outline: 2px solid #3b82f6;
	outline-offset: -2px;
}

.file-input-filename {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 0 16px;
	background-color: white;
	font-size: 14px;
	color: #1f2937;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.file-help-text {
	margin-top: 4px;
	font-size: 14px;
	color: #6b7280;
}

.submit-section {
	margin-top: 32px;
}

.submit-hint {
	text-align: center;
	font-size: 18px;
	color: #374151;
	margin-bottom: 12px;
}

.submit-button {
	width: 100%;
	padding: 12px;
	background-color: #000000;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.submit-button:hover {
	background-color: #374151;
}

.submit-button:active {
	background-color: #4b5563;
}

.statement-section {
	margin-top: 32px;
}

.statement-title {
	display: block;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	color: #374151;
	margin-bottom: 8px;
}

.statement-item-title {
	font-size: 18px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 4px;
}

.statement-text {
	color: #4b5563;
	line-height: 1.6;
	margin-bottom: 8px;
}

.select-none {
	user-select: none;
}

.select-auto {
	user-select: auto;
}

.select-text {
	user-select: text;
}

