* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-family: 'Arial', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 90vh;
	background-color: #f0f0f5;
	margin-bottom: 50px; /* To ensure body height doesn't overlap with the footer */
  }
  
  .login-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
  }
  
/* Login box styling */
.login-box {
	background-color: #ffffff;
	padding: 2rem;
	width: 90%;
	max-width: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  /* Logo styling */
  .logo {
	max-width: 150px;
	margin-bottom: 1.5rem;
  }
  
  .login-title {
	font-size: 1.8rem;
	color: #333333;
	margin-bottom: 2rem;
	text-align: center;
	font-weight: 500;
  }
  
  /* Form styling */
  .login-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.2rem; /* Space between input fields */
  }
  
  .input-group input {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #d0d0d0;
	background-color: #fafafa;
	font-size: 1rem;
	color: #333333;
	outline: none;
	transition: border-color 0.3s ease-in-out;
  }
  
  .input-group input:focus {
	border-color: #0077cc; /* Enterprise-style blue when focused */
  }
  
  .login-btn {
	background-color: #0077cc;
	color: #ffffff;
	padding: 0.75rem;
	border: none;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
	text-transform: uppercase;
  }
  
  .login-btn:hover {
	background-color: #005fa3;
  }
  
  .dashboard-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 400px;
	padding: 20px;
	background-color: #fff; /* Same background as original template */
	border-radius: 15px; /* Increased border-radius to match the login box */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Consistent shadow */
	min-height: 100vh; /* Minimum height set to the full viewport height */
  }
  
  /* Header styling */
  h1 {
	margin-bottom: 20px;
	font-size: 24px;
	color: #333; /* Updated to match the login title color */
	text-align: center;
  }
  
  /* Flex container for buttons */
  .button-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 10px;
  }
  
  /* Button style */
  .dashboard-btn {
	background-color: #3498db; /* Updated to match the login button color */
	color: white;
	padding: 15px;
	font-size: 16px;
	border: none;
	border-radius: 8px; /* Updated to match the button border-radius */
	text-align: center;
	width: 100%;
	cursor: pointer;
	transition: background-color 0.3s ease;
  }
  
  .dashboard-btn:hover {
	background-color: #2980b9; /* Updated hover color to match */
  }
  
  /* Logout button style */
  #logoutBtn {
	background-color: #f44336; /* Kept red as a distinct color for logout */
	color: white;
	margin-top: 20px;
  }
  
  #logoutBtn:hover {
	background-color: #e53935;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
	.dashboard-container {
	  padding: 10px;
	}
  
	.dashboard-btn {
	  font-size: 14px;
	}
  
	h1 {
	  font-size: 20px;
	}
  }
  
/* Footer styling */
.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #f0f0f5;
	text-align: center;
	padding: 10px 0;
	font-size: 0.85rem;
	color: #777;
	border-top: 1px solid #ddd;
  }