body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 200px;
}

.login-container {
	margin-bottom: 100px;
}

.login-container {
	width: 100%;
	max-width: 400px;
	padding: 2rem;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.error-message {
	display: none;
	margin-top: 1rem;
}

.captcha-container {
	display: flex;
	gap: 10px;
}

#captchaImage {
	width: 160px;
	height: 42px;
	border: 1px solid #ced4da;
	border-radius: 0.375rem;
	cursor: pointer;
}

.refresh-icon {
	align-self: center;
	cursor: pointer;
	color: #6c757d;
	transition: color 0.2s;
}

.refresh-icon:hover {
	color: #0d6efd;
}

.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
}