@charset "UTF-8";
body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #E2F6E1;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.login-container {
	width: 300px;
	padding: 30px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
	text-align: center;
	margin-bottom: 20px;
}

.login-container input[type="text"], .login-container input[type="password"]
	{
	width: 100%;
	padding: 10px;
	margin: 8px 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.button-row {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
}

.button-row input {
	width: 48%;
	padding: 10px;
	font-size: 14px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.login-btn {
	background-color: #4CAF50;
	color: white;
}

.cancel-btn {
	background-color: #f44336;
	color: white;
}

.error-msg {
	color: red;
	text-align: center;
	margin-top: 10px;
	font-size: 14px;
}