* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-family: "Montserrat", Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	height: 100vh;
	z-index: 1;
	background: url('/assets/images/lgubg.png') no-repeat center center fixed;
	background-size: cover;
  }
  
  .container {
	margin-top: 10px;
	max-width: 300px;
	width: 100%;
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	margin: auto;
	text-align: center;
  }
  
  .header {
	font-size: 18px;
	text-transform: uppercase;
	color: #2c3e50;
	margin-bottom: 10px;
	text-align: left;
  }
  
  .input-icon {
	position: relative;
	margin-bottom: 10px;
  }
  .input-icon i.mdi-account {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #ccc;
  }
  
  .input-icon i.mdi-lock {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #ccc;
  }
  
  .input-icon i#togglePassword {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #ccc;
	cursor: pointer;
	display: none; /* Hidden until there is input */
  }
  
  input[type="text"],
  input[type="password"] {
	padding: 15px 40px 15px 40px; /* Padding for both icons */
	border: 1px solid #ccc;
	border-radius: 3px;
	width: 100%;
	font-family: "Montserrat", sans-serif;
	color: #2c3e50;
	font-size: 14px;
  }
  
  .error-message {
	color: #fff;
	font-size: 0.8rem;
	font-family: 'Montserrat' !important;
	text-align: center;
	background: #d9534f;
	padding: 8px;
	margin-bottom: 10px;
	border-radius: 2px;
	transition: all 200ms;
	font-weight: 500;
  }
  
  button {
	width: 100%;
	background: #1f4c8f;
	font-weight: bold;
	color: #fff;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	padding: 10px;
	margin: 10px 5px;
	font-size: 14px;
  }
  
  button:hover {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #1f4c8f;
  }
  
  /* Responsive Styles */
  @media (max-width: 600px) {
	input[type="text"],
	input[type="password"] {
	  padding: 15px 35px 15px 35px; /* Adjust padding for small screens */
	}
  
	button {
	  font-size: 14px;
	  padding: 10px;
	}
  }
  
  @media (max-width: 400px) {
	.container {
	  padding: 20px;
	}
  
	.header {
	  font-size: 16px;
	}
  }
  