body {
	align-items: center;
	justify-content: center;
}

.login-container {
	background: var(--bg);
	padding: 2.5rem 3rem;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
	width: 320px;
	text-align: center;
}

.login-container img {
	width: 100%;
}

label {
	display: block;
	margin: 0.8rem 0 0.3rem;
	font-weight: 600;
	color: var(--text);
	text-align: left;
}

input[type="text"],
input[type="password"] {
	width: 100%;
	padding: 0.55rem 0.75rem;
	border-radius: 8px;
	border: 1.8px solid var(--muted);
	font-size: 1rem;
	transition: border-color 0.25s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 8px var(--accent);
}

.btn {
	margin-top: 1.8rem;
	padding: 0.75rem;
	cursor: pointer;
	transition: background-color 0.5s ease;
}

.btn:hover {
	background: var(--success);
}

.error-msg {
	margin-top: 1rem;
	color: var(--danger);
	font-weight: 600;
	display: none;
}

.footer {
	margin-top: 2rem;
	font-size: 0.9rem;
	color: var(--muted);
}