* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  /* Set a background color */
  body {
	background-color: #f3f4f6; 
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh; 
  }
  
  /* Style the login container */
  .login-container {
	background-color: #ffffff; 
	width: 450px; 
	padding: 30px; 
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); 
	text-align: center;
	color: #333; 
	transform: scale(1); 
	transition: transform 0.5s ease-in-out; 
  }
  
  /* Add hover animation */
  .login-container:hover {
	transform: scale(1.05); 
  }
  
  /* Style the login form */
  form {
	display: flex;
	flex-direction: column;
  }
  
  /* Style the form labels */
  label {
	font-weight: bold;
  }
  
  /* Style the form inputs */
  input {
	margin: 10px 0;
	padding: 10px;
	border: 1px solid #ccc; 
	border-radius: 5px;
	background-color: #f8f8f8; 
	color: #333;
  }
  
  /* Style the submit button */
  button {
	padding: 10px;
	background-color: #525DE0; 
	color: #fff; 
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
  }
  
  button:hover {
	background-color: #444ABF; 
  }
  
  /* Style the "Don't have an account?" text and link */
  .signup {
	margin-top: 10px;
	color: #555; 
  }
  
  .signup a {
	color: #525DE0; 
	text-decoration: none;
	transition: color 0.3s ease-in-out;
  }
  
  .signup a:hover {
	color: #444ABF; 
  }
  
  /* Keyframe animation for fading in */
  @keyframes fadeIn {
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
  }
  
 
  
  