:root {
	--primary-color: #4ba1cc;
	--secondary-color: #4B6166;
	--text-color: #333;
	--bg-color: #f8fafc;
	--card-bg: #ffffff;
	--shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
	background-color: var(--bg-color);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--text-color);
	line-height: 1.6;
}

#PageContent {
	width: 100vw;
	height: 80vh;
	display: grid;
	align-items: center;
	justify-content: center;
}

#MainBox {
	padding: 2.5rem;
	background: var(--card-bg);
	box-shadow: var(--shadow);
	border-radius: 0.75rem;
	min-width: 380px;
}

#ForgotTitle {
	text-align: center;
	font-weight: 600;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: var(--primary-color);
}

#ResetInfo {
	display: grid;
	gap: 1rem;
}

#ResetInfo>div:first-child {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-color);
}

.titleInput {
	padding: 0.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.375rem;
	width: 100%;
	font-size: 0.95rem;
	transition: border-color 0.2s ease;
}

.titleInput:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(75, 161, 204, 0.2);
}

#SendEmailButton {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 0.6rem 1.5rem;
	border-radius: 0.375rem;
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 600;
	margin-top: 0.5rem;
}

#SendEmailButton:hover {
	background-color: var(--secondary-color);
	transform: translateY(-1px);
}

#SuccMessage {
	text-align: center;
	padding: 1.5rem;
	background-color: #f0f9ff;
	border: 1px solid var(--primary-color);
	border-radius: 0.5rem;
	color: var(--text-color);
	margin-top: 1rem;
}

.back-button {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 0.4rem 1rem;
	border-radius: 0.375rem;
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 600;
	margin-bottom: 1rem;
	text-decoration: none;
	display: inline-block;
}

.back-button:hover {
	background-color: var(--secondary-color);
	transform: translateY(-1px);
}

@media(max-width: 480px) {
	#MainBox {
		min-width: 90%;
		padding: 1.5rem;
	}
}