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

body {
	font-family: 'Segoe UI', sans-serif;
	background-color: #f0f2f5;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 20px;
}

.quiz-container,
.form-box {
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 700px;
	overflow: hidden;
	padding: 30px;
}

.title {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: #333;
	text-align: center;
}

input,
textarea {
	width: 100%;
	padding: 14px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
}

button {
	background-color: #2563eb;
	color: #fff;
	border: none;
	width: 100%;
	cursor: pointer;
    font-weight: 600;
	font-size: 1.5rem;
	font-family: inherit;
	padding: 1rem;
	border-radius: 8px;
	transition: background-color 0.3s;
}
button:hover {
	background-color: #0056b3;
}
button:disabled {
	background-color: #cccccc;
	cursor: not-allowed;
}

/* Logout */
.logout-button {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 20px;
	background-color: #e53935;
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
}
.logout-button:hover {
	background-color: #c62828;
}

/* Quiz-specific */
h2 {
	font-size: 1.3rem;
	margin-bottom: 20px;
	color: #333;
}

ul {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
}
li {
	margin-bottom: 12px;

	cursor: pointer;
	transition: background-color 0.3s, border-color 0.3s;
}
li:hover {
	background-color: #f9f9f9;
}

input[type='radio'] {
	display: none;
}
label {
	display: block;
	width: 100%;
	padding: 1rem 1.5rem;
	font-size: 1rem;
	cursor: pointer;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}
input[type='radio']:checked + label {
	font-weight: bold;
	border: 1px solid #000;
	border-radius: 8px;
}
.correct {
	background-color: #d4edda !important;
	border-color: #c3e6cb !important;
}
.incorrect {
	background-color: #f8d7da !important;
	border-color: #f5c6cb !important;
}

.error {
	color: red;
	text-align: center;
	margin-bottom: 12px;
}

/* Результаты */
.results-list {
	list-style-type: decimal;
	padding-left: 20px;
	margin-top: 20px;
	text-align: left;
}
.results-list li {
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}
.results-list li:last-child {
	border-bottom: none;
}
.results-list p {
	margin: 5px 0;
}
.question-text {
	font-weight: bold;
	margin-bottom: 10px;
}

/* Адаптация */
@media (max-width: 768px) {
	body {
		padding: 16px;
		/* align-items: flex-start; */
	}
	.quiz-container,
	.form-box {
		padding: 20px;
		max-width: 100%;
	}
	h2 {
		font-size: 1.3rem;
	}
	label {
		font-size: 1rem;
	}
	button {
		font-size: 1rem;
	}
}
