*{
  box-sizing:border-box;
}

body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at top, #2a0055, #000);
  font-family:Arial, sans-serif;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
}

/* Main Container */
.entry-container{
  width:100%;
  padding:20px;
  text-align:center;
}

/* Brand */
.brand{
  margin-bottom:30px;
}

.brand h1{
  font-size:42px;
  margin:0;
  letter-spacing:1px;
}

.brand h1 span{
  color:#ff00ff;
}

.brand p{
  margin-top:6px;
  color:#bbb;
  font-size:14px;
}

/* Login Card */
.login-card{
  max-width:420px;
  margin:auto;
  background:rgba(20,20,20,0.95);
  border-radius:24px;
  padding:30px 25px;
  border:2px solid #7f00ff;
  box-shadow:0 0 30px rgba(127,0,255,0.6);
}

.title{
  font-size:20px;
  font-weight:bold;
  margin-bottom:6px;
}

.subtitle{
  font-size:14px;
  color:#bbb;
  margin-bottom:22px;
}

/* Google Button */
.google-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:14px;
  border:none;
  border-radius:18px;
  font-size:15px;
  font-weight:bold;
  cursor:pointer;
  background:#ffffff;
  color:#000;
}

.google-btn img{
  width:20px;
}

.google-btn:active{
  transform:scale(0.97);
}

/* Trust Points */
.trust-points{
  display:flex;
  justify-content:space-between;
  margin:18px 0;
  font-size:12px;
  color:#ccc;
}

/* Terms */
.terms{
  display:block;
  margin-top:10px;
  font-size:12px;
  color:#aaa;
}

.terms span{
  color:#ff00ff;
}

/* 🔥 PREMIUM GOOGLE BUTTON EFFECTS */
.google-btn{
  position:relative;
  overflow:hidden;
  transition:all 0.25s ease;
  box-shadow:0 0 0 rgba(0,0,0,0);
}

/* Hover effect (desktop / mouse) */
.google-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* Click / Tap effect */
.google-btn:active{
  transform:scale(0.96);
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

/* Shine effect */
.google-btn::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:60%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
}

/* Shine animation on hover */
.google-btn:hover::after{
  animation:shine 0.8s ease forwards;
}

@keyframes shine{
  from{
    left:-100%;
  }
  to{
    left:120%;
  }
}