body {
	/* background: #f0f2f5; */
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

.reset-container {
	max-width: 400px;
	margin: 40px auto 20px auto;
	padding: 2rem;
	background: #111;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.reset-container img {
	display: block;
	margin: 0 auto 20px;
	max-height: 60px;
}

.reset-container h2 {
	text-align: center;
	margin-bottom: 1.5rem;
	color: #fff;
}

.error-message {
	background: #ffe0e0;
	color: #b30000;
	padding: 0.75rem;
	border: 1px solid #ffb3b3;
	border-radius: 8px;
	margin-bottom: 1rem;
	text-align: center;
}

.form-group {
	margin-bottom: 1rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #999;
}

.form-group input {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
}

.form-group input:focus {
	border-color: #1e90ff;
	outline: none;
}

.reset-button {
	width: 100%;
	padding: 0.75rem;
	background: #1e90ff;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 1rem;
	cursor: pointer;
	margin-top: 20px;
}

.reset-button:hover {
	background: #147bd1;
}
		
.login-link {
	text-align: center;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: #888;
}

.login-link a {
	color: #1e90ff;
	text-decoration: none;
}

.captcha-container {
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}

.footer-text {
	text-align: center;
	margin-top: 1.5rem;
	font-size: 0.85rem;
	color: #888;
}