body {
	margin: 0;
	font-family: "Segoe UI", Arial, sans-serif;
	background: url("../img/Background.png");
	object-fit: cover;
	color: #333;
}

.login-page {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.login-form {
	background: white;
	width: 350px;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.login-form h1 {
	color: #2c3e50;
	margin-bottom: 10px;
}

.login-form p {
	color: #7f8c8d;
	margin-bottom: 30px;
	font-size: 14px;
}

.input-group {
	text-align: left;
	margin-bottom: 20px;
}

.input-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #2c3e50;
	font-size: 13px;
}

.input-group input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-sizing: border-box;
	transition: border 0.3s;
}

.input-group input:focus {
	border-color: #3498db;
	outline: none;
}

.error {
	color: #c0392b;
	background: #fdecea;
	padding: 10px;
	border-radius: 5px;
	margin-top: 15px;
	font-size: 14px;
	text-align: left;
}

.uk-button {
	border-radius: 6px;
}
