/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&display=swap');

body {
	font-family: 'IBM Plex Sans', sans-serif;
	background-color: #f8f9fa;
	margin: 0;
	padding: 0;
	display: flex;
	height: 100vh;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

input {
	font-family: 'IBM Plex Sans';
}

.login-container {
	width: 100%;
	max-width: 400px;
	background-color: #ffffff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.login-container img {
	width: 200px;
	margin-bottom: 20px;
}

.login-container h1 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #333;
}

.login-container input {
	width: 94%;
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.login-container button {
	width: 100%;
	padding: 10px;
	background-color: #2d368b; /* Updated button color */
	color: #ffffff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

.login-container button:hover {
	background-color: #232a6e; /* Slightly darker shade for hover */
}

.password-container {
	position: relative;
}

.password-container input[type="password"],
.password-container input[type="text"] {
	width: 94%;
}

.password-container .toggle-password {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	cursor: pointer;
	font-size: 16px;
	color: #666;
	user-select: none;
}

.password-container .toggle-password svg {
	width: 24px;
	height: 24px;
	fill: #666;
	cursor: pointer;
}
/* General Footer Styling */
footer {
	position: absolute; /* Fix the footer to the bottom */
	bottom: 10px; /* Distance from the bottom */
	width: 100%; /* Full width */
	text-align: center;
	font-size: 14px;
	color: #666;
}

footer a {
	text-decoration: none;
	color: #2d368b;
	font-weight: 500;
}

footer a:hover {
	text-decoration: underline;
}





