body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at center, #444444, #111111); /* darker circular gradient */
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Glass effect container */
.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  width: 360px;
  text-align: center;
  color: #fff;
}

h1 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #f1f1f1;
  letter-spacing: 1px;
}

/* Wallet logo */
.logo {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

a:hover {
  background: linear-gradient(135deg, #0056b3, #0099cc);
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.6);
}

.footer {
  margin-top: 30px;
  font-size: 14px;
  color: #ccc;
}

.login-action {
  display: flex;
  align-items: center;  /* vertical alignment */
  gap: 10px;            /* space between logo and button */
  justify-content: center; /* center the group horizontally */
}

.login-logo {
  width: 40px;
  height: 40px;
  border-radius:10px;
}

.login-btn {
  text-decoration: none;
  color: #000000;
  background: #FFFFFF;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: linear-gradient(135deg, #0056b3, #0099cc);
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.6);
}