/* style.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #4A90E2, #7ED957);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bgmove 10s infinite alternate;
}

@keyframes bgmove {
  0% { background-position: left; }
  100% { background-position: right; }
}

.login-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo {
  text-align: center;
  margin-bottom: 25px;
}
.logo img {
  width: 80px;
  border-radius: 10px;
}
.logo h2 {
  font-size: 22px;
  color: #333;
  margin-top: 10px;
}

.login-container h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #4A90E2;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #4A90E2;
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: #4A90E2;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.login-btn:hover {
  background: #3b7ccc;
  transform: scale(1.02);
}

.forgot {
  text-align: right;
  margin-top: 10px;
}

.forgot a {
  text-decoration: none;
  color: #4A90E2;
  font-size: 14px;
}

@media (max-width: 480px) {
  .login-container {
    padding: 25px;
  }
}



.export-btn {
  display: inline-block;
  background: #4A90E2;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.export-btn:hover {
  background: #356ebc;
}
