
body {
	background-color: #f5f5f5;
	display: flex;
	justify-content: center;
	padding: 20px;
}

.login-container {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	width: 100%;
	max-width: 900px;
	text-align: center;
	top: 20px;
}

.login-container h2 {
	margin: 10px;
	margin-bottom: 30px;
	font-size: 65px;
}

.login-container input {
	width: 100%;
	padding: 30px;
	margin-bottom: 30px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 50px;
	outline: none;
	box-sizing: border-box;
}

.login-container input:focus {
	border-color: #1a1a1a;
}

.login-container .error {
	color: #d50000;
	margin: 10px 0;
	margin-bottom: 30px;
	font-size: 40px;
	font-family: arial;
}

.login-container button {
	width: 100%;
	padding: 30px;
	background-color: #2e7d32;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 50px;
	cursor: pointer;
}

.login-container button:hover {
	background-color: #1b5e20;
}

.register-link {
	font-size: 40px;
	text-decoration: none;
	color: black;
	display: block;
	text-align: left;
	margin: 20px 0;
	transition: color 0.3s ease, transform 0.2s ease, text-decoration 0.2s ease;
}

.register-link:hover {
	color: #444;
	text-decoration: underline;
	transform: translateX(5px);
}
