/* =========================
   AUTH PAGE PREMIUM
========================= */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #1E3A8A, #1e40af);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* BACKGROUND GLOW */
body::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #FACC15;
  filter: blur(120px);
  top: -100px;
  left: -100px;
  opacity: 0.3;
}

body::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #60a5fa;
  filter: blur(120px);
  bottom: -100px;
  right: -100px;
  opacity: 0.3;
}

/* WRAPPER */
.pilih-daftar {
  padding: 100px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* CONTAINER */
.pilih-wrap {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

/* HEADER */
.pilih-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 800;
}

.pilih-header p {
  color: #e5e7eb;
  margin-bottom: 60px;
  font-size: 16px;
}

/* GRID */
.pilih-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD PREMIUM */
.pilih-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 45px 30px;
  text-decoration: none;
  color: #fff;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

/* GLOW BORDER */
.pilih-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* HOVER */
.pilih-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

/* ICON */
.pilih-card .icon {
  font-size: 48px;
  margin-bottom: 20px;
}

/* TITLE */
.pilih-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* TEXT */
.pilih-card p {
  font-size: 14px;
  color: #e5e7eb;
  margin-bottom: 25px;
}

/* BUTTON STYLE */
.btn-pilih {
  display: inline-block;
  background: linear-gradient(135deg, #FACC15, #eab308);
  color: #111;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
}

/* BUTTON HOVER */
.pilih-card:hover .btn-pilih {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(250,204,21,0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pilih-grid {
    grid-template-columns: 1fr;
  }

  .pilih-header h2 {
    font-size: 28px;
  }
}