/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body styling */
body {
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container for form */
.login-container {
  background-color: #e4f9fa;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 420px;
}

/* Heading */
.login-container h2 {
  margin-bottom: 25px;
  color: #2c3e50;
  text-align: center;
  font-size: 28px;
}

/* Form group */
.form-group {
  margin-bottom: 20px;
}

/* Inputs styling */
.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
  background-color: #f9f9f9; /* Lighter background for input */
}

.form-group input:hover {
  outline: none;
  border-color: #3498db;
  background-color: #eaf4ff; /* Light blue background when focused */
  box-shadow: 0 0 8px rgba(52, 152, 219, 0.3); /* Soft blue glow around input */
}

/* Button */
.btn-login {
  width: 100%;
  padding: 12px;
  background-color: #3498db;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: #1d435c;
}

/* Footer */
.login-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #2c3e50;
}

.login-footer a {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}

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

/* Responsive */
@media (max-width: 480px) {
  .login-container {
      padding: 30px 20px;
  }
}
