body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #1e3c72, #2a5298);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
}

.login-box {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
	padding: 40px;
	width: 320px;
	text-align: center;
	animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}

.login-box h2 {
	margin-bottom: 25px;
	color: #2a5298;
}

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

label {
	font-size: 14px;
	color: #333;
}

input[type="text"],
input[type="password"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 15px;
	margin-top: 5px;
	transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
	border-color: #2a5298;
	outline: none;
}

.checkbox {
	text-align: left;
	font-size: 14px;
	color: #444;
	margin-bottom: 20px;
}

.btn-container {
	display: flex;
	justify-content: space-between;
}

input[type="submit"],
input[type="reset"] {
	width: 48%;
	padding: 10px;
	border: none;
	border-radius: 8px;
	background: #2a5298;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
}

input[type="reset"] {
	background: #888;
}

input[type="submit"]:hover {
	background: #1e3c72;
}

input[type="reset"]:hover {
	background: #666;
}
.err{
	margin-bottom:12px;
	color:#991b1b;
	background:#fee2e2;
	border:1px solid #fecaca;
	padding:10px;
	border-radius:6px
}
.notice{
	margin-bottom:12px;
	color:#064e3b;
	background:#ecfdf5;
	padding:10px;
	border-radius:6px;
	border:1px solid #10b981;
}