body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(to right, #e0f2fe, #dbeafe);
}

.login-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.login-card img {
  height: 80px;
  margin-bottom: 15px;
}

.login-card h2 {
  margin: 10px 0 30px;
  font-size: 24px;
  font-weight: bold;
  color: #4f46e5;
}

.login-card h2 span {
  color: #f59e0b;
}

.input-group {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 10px;
}

.input-group input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  padding: 8px;
  font-size: 14px;
}

.toggle-password {
  cursor: pointer;
  color: gray;
  font-size: 14px;
  margin-left: 8px;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: #4f46e5;
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-btn:hover {
  background: #4338ca;
}

.links {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 14px;
}

.links a {
  color: #4f46e5;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.store-buttons img {
  height: 40px;
}