:root {
	--asm_primary-color: #4a90e2;
	--asm_secondary-color: #f8f9fa;
	--asm_accent-color: #28a745;
	--asm_danger-color: #dc3545;
	--asm_border-color: #e1e5e9;
	--asm_text-color: #333;
	--asm_shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--asm_shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}

#page_asm{
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
	min-height: 100vh;
	margin: 0;
	padding: 0 0 88px 0;
	justify-content: center;
	align-items: center;
}

.asm_form-container {
	background: white;
	border-radius: 20px;
	box-shadow: var(--asm_shadow-hover);
	margin: 20px auto;
	padding: 40px;
	max-width: 600px;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.asm_form-container::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}

.asm_form-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--asm_primary-color), var(--asm_accent-color));
}

.asm_form-title {
	text-align: center;
	color: var(--asm_text-color);
	margin-bottom: 30px;
	font-size: 28px;
	font-weight: 600;
	position: relative;
}

.asm_form-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--asm_primary-color);
	border-radius: 2px;
}

.asm_form-row {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	gap: 15px;
	padding: 15px;
	border-radius: 12px;
	background: var(--asm_secondary-color);
	transition: all 0.3s ease;
	position: relative;
}

.asm_form-row:hover {
	background: #f0f2f5;
	transform: translateY(-2px);
	box-shadow: var(--asm_shadow);
}

.asm_input-group {
	flex: 1;
	position: relative;
}

.asm_input-group.asm_name-input {
	flex: 2;
}

.asm_input-group.asm_score-input {
	flex: 1;
}

.asm_form-input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--asm_border-color);
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: white;
	color: var(--asm_text-color);
}

.asm_form-input:focus {
	outline: none;
	border-color: var(--asm_primary-color);
	box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.asm_form-input[type="number"] {
	text-align: center;
	font-weight: 600;
}

.asm_requirements-textarea {
	resize: vertical;
	min-height: 100px;
	font-family: inherit;
	line-height: 1.5;
}

.asm_requirements-textarea:focus {
	outline: none;
	border-color: var(--asm_primary-color);
	box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.asm_add-btn {
	width: 100%;
	padding: 12px;
	background: var(--asm_accent-color);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.asm_add-btn:hover {
	background: #218838;
	transform: scale(1.1);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.asm_remove-btn {
	background: var(--asm_danger-color);
	color: white;
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 12px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 8px;
	right: 8px;
	opacity: 0;
	transform: scale(0.8);
}

.asm_form-row:hover .asm_remove-btn {
	opacity: 1;
	transform: scale(1);
}

.asm_remove-btn:hover {
	background: #c82333;
	transform: scale(1.1);
}

.asm_submit-btn {
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, var(--asm_primary-color), #357abd);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 20px;
	box-shadow: var(--asm_shadow);
}

.asm_submit-btn:hover {
	background: linear-gradient(135deg, #357abd, var(--asm_primary-color));
	transform: translateY(-2px);
	box-shadow: var(--asm_shadow-hover);
}

.asm_submit-btn:active {
	transform: translateY(0);
}

.asm_total-score {
	background: #e8f4f8;
	border: 2px solid var(--asm_primary-color);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	color: var(--asm_primary-color);
}

.asm_total-score i {
	margin-right: 10px;
	font-size: 20px;
}

.asm_score-display {
	font-size: 24px;
	font-weight: 700;
	color: var(--asm_primary-color);
}

@media (max-width: 768px) {
	.asm_form-container {
		padding: 20px;
		margin: 10px;
	}

	.asm_form-row {
		flex-direction: column;
		gap: 10px;
	}

	.asm_input-group {
		width: 100%;
	}

	.asm_add-btn {
		margin-top: 10px;
	}
}