/* Kartu form auth memakai gaya front-registration agar konsisten */

:root{
  --g1:#0ea5e9; /* biru */
  --g2:#10b981; /* hijau */
  --bd:#e5e7eb;
  --txt:#0b1220;
  --sub:#64748b;
}

/* Container kartu */
.gs-front-card{ max-width:620px; margin:26px auto; }

/* Title gradasi menyatu */
.gs-front-card .gs-titlebar{
  background:linear-gradient(135deg,var(--g1),var(--g2));
  color:#fff;
  padding:14px 16px;
  border-radius:14px 14px 0 0;
  text-align:center;
  box-shadow:0 6px 14px rgba(14,165,233,.18);
}
.gs-front-card .gs-titlebar h3{
  margin:0; font-weight:900; letter-spacing:.2px;
  text-shadow:0 1px 1px rgba(0,0,0,.25);
}

/* Body form menyatu dengan title */
.gs-front-card .gs-card-inner{
  background:linear-gradient(135deg, rgba(14,165,233,.10), rgba(16,185,129,.10));
  border:1px solid var(--bd); border-top:none;
  border-radius:0 0 14px 14px;
  padding:16px;
  box-shadow:0 12px 26px rgba(0,0,0,.08);
}

/* Grid field: default 2 kolom, mobile 1 kolom */
.gs-front-card .gs-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 14px;
}
@media (max-width:720px){
  .gs-front-card .gs-grid{ grid-template-columns:1fr; }
}

/* Label tebal & kontras */
.gs-front-card .gs-field label{
  display:block; margin:0 0 6px;
  font-weight:900; color:var(--txt);
}
.gs-front-card .gs-field label small{
  font-weight:700; color:var(--txt);
}

/* Input putih, radius 12px (sama dengan tombol), teks normal */
.gs-front-card .gs-input{
  width:100%; height:42px; padding:0 12px;
  background:#fff; border:1px solid var(--bd);
  border-radius:12px;
  color:var(--txt); font-weight:500;
  box-shadow:0 1px 2px rgba(0,0,0,.04) inset;
  transition:border-color .15s ease, box-shadow .15s ease;
  box-sizing:border-box;
}
.gs-front-card .gs-input::placeholder{ color:#6b7280; font-weight:400; opacity:1; }
.gs-front-card .gs-input:focus{
  outline:none; border-color:var(--g1);
  box-shadow:0 0 0 3px rgba(14,165,233,.18);
}

/* Password eye */
.gs-front-card .gs-passwrap{ position:relative; }
.gs-front-card .gs-pass-toggle{
  position:absolute; right:10px; top:50%; transform:translateY(-50%);
  cursor:pointer; color:var(--sub); font-size:18px; line-height:1;
}

/* Tombol: satu kolom (umumnya 1 tombol), radius 12px, gradasi sama */
.gs-front-card .gs-actions{
  display:grid; grid-template-columns:1fr; gap:10px; margin-top:14px;
}
.gs-front-card .gs-actions .button{
  min-height:44px; border:none; border-radius:12px;
  color:#fff !important; font-weight:900;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--g1),var(--g2));
  text-shadow:0 1px 1px rgba(0,0,0,.18);
  box-shadow:0 10px 16px rgba(14,165,233,.12);
  transition:transform .06s ease, filter .2s ease;
}
.gs-front-card .gs-actions .button:hover{ filter:brightness(.97); transform:translateY(-1px); }
.gs-front-card .gs-actions .button:active{ transform:translateY(0); }

/* Link "Lupa Password" di bawah tombol login */
.gs-front-card .gs-link-under{
  margin-top:8px; text-align:center;
}
.gs-front-card .gs-link-under .gs-link{
  color:#0ea5e9; font-weight:800; text-decoration:none;
}
.gs-front-card .gs-link-under .gs-link:hover{ text-decoration:underline; }

/* Notifikasi hasil */
.gs-front-card .gs-response{
  margin-top:14px; padding:12px;
  border:1px solid var(--bd); border-radius:10px;
  background:#fff; color:var(--txt);
  white-space:pre-line; box-shadow:0 4px 12px rgba(0,0,0,.06);
}
.gs-front-card .gs-response.gs-success{ border-color:#bbf7d0; }
.gs-front-card .gs-response.gs-error{ border-color:#fecaca; }