/* 	==========
	Log in Page
	========== */

.login-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60vh;
	padding: 2rem 1rem;
}

.login-box {
	background: white;
	padding: 2.5rem 2rem;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	max-width: 600px;
	width: 100%;
	text-align: left;
	animation: fadeUp 0.8s ease-out forwards;
}

.login-box h2 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	text-align: center;
	color: #0f172a;
	font-size: 1.6rem;
}

.login-box label {
	text-align: center;
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: rgb(25, 39, 223);
}

.login-box input {
	width: 100%;
	padding: 0.75rem;
	margin-bottom: 1rem;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.login-box button {
	display: block;
	margin: 1rem auto;
	width: 100%;
	padding: 0.75rem;
	background-color: #0f172a;
	color: #fff;
	text-align: center;
	border: none;
	border-radius: 8px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s ease;
}

.login-box button:hover {
	background-color: #555;
}

/* Links */
.login-links,
.login-box a {
	display: block;
	text-align: center;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: rgb(25, 39, 223);;
	text-decoration: none;
	font-weight: 600;
}

.login-box a:hover {
	text-decoration: underline;
	color: #004d40;
}
#login-message {
	color: black;
}