/* ========================= */
/* SECTION */
/* ========================= */
.auth-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A1F44, #102A5C);
  text-align: center;
  color: #fff;
}

/* TITLE */
.auth-title {
  font-size: 36px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #1E90FF, #4DB8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-subtitle {
  color: #C0D6FF;
  margin-bottom: 50px;
}

/* ========================= */
/* GRID */
/* ========================= */
.auth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ========================= */
/* CARD */
/* ========================= */
.auth-card {
  background: #163B7A;
  border-radius: 20px;
  padding: 30px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* Glow effect */
.auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(77,184,255,0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

.auth-card:hover::before {
  opacity: 1;
}

/* Hover */
.auth-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(30,144,255,0.4);
}

/* ========================= */
/* ICON */
/* ========================= */
.auth-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* ========================= */
/* LIST */
/* ========================= */
.auth-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.auth-card ul li {
  margin-bottom: 10px;
  color: #C0D6FF;
  font-size: 14px;
}

/* ========================= */
/* BUTTON */
/* ========================= */
.btn-auth {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1E90FF, #4DB8FF);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
}

/* Hover */
.btn-auth:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(30,144,255,0.6);
}

/* Klik */
.btn-auth:active {
  transform: scale(0.95);
}

/* ========================= */
/* FIX KLIK */
/* ========================= */
.auth-section,
.auth-card,
.auth-card * {
  pointer-events: auto;
}