/* --- RESET & DESIGN SYSTEM SIXTIFY --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif; /* Menggunakan font modern sesuai vibe Sixtify */
}

body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url('backgroundloginfix.jpg') no-repeat center center/cover;
  position: relative;
}

/* OVERLAY LEMBUT AGAR KONTRAS KOTAK LOGIN MAKIN CANTIK */
body::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.15); /* Overlay gelap tipis */
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* WRAPPER UTAMA (Bikin semua element presisi di tengah-tengah) */
.main-auth-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 2;
  padding: 24px;
}

/* --- KOTAK CARD LOGIN SIXTIFY --- */
.sixtify-login-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.95); /* Putih bersih solid dengan opacity premium */
  border-radius: 24px; /* Sudut melengkung halus sesuai UI Sixtify */
  padding: 40px 35px;
  box-shadow: 0 20px 50px rgba(4, 57, 39, 0.15); /* Shadow dengan tint hijau gelap maskulin */
}

/* BRANDING HEADER */
.brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text h3 {
  font-size: 17px;
  font-weight: 800;
  color: #043927; /* Hijau tua khas Sixtify */
  letter-spacing: -0.3px;
}

.brand-text p {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.divider-line {
  height: 1px;
  background: #f1f5f9;
  margin: 24px 0;
}

.section-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

/* --- FORM & INPUTS --- */
.input-group-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.input-group-container label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.field-wrapper {
  position: relative;
  width: 100%;
}

.field-wrapper input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  color: #0f172a;
  background-color: #f8fafc; /* Latar belakang input soft abu-abu */
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.field-wrapper input:focus {
  border-color: #043927;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(4, 57, 39, 0.08); /* Efek glow fokus hijau transparan */
}

/* Ikon Mata Password */
.toggle-password-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.2s;
}

.toggle-password-icon:hover {
  color: #334155;
}

/* --- LOGIKA CHECKBOX INGAT SAYA --- */
.options-row {
  margin-bottom: 26px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  transition: all 0.2s;
}

.custom-checkbox:hover input ~ .checkmark {
  background-color: #e2e8f0;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #043927;
  border-color: #043927;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

.custom-checkbox .checkmark::after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* --- BUTTON UTAMA (Gaya Rounded Pill Khas Sixtify) --- */
.login-submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 100px; /* Bikin rounded pill persis seperti tombol Login di navbar kamu */
  background: #043927; /* Warna hijau gelap premium Sixtify */
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(4, 57, 39, 0.2);
}

.login-submit-btn:hover {
  background: #022418;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(4, 57, 39, 0.3);
}

/* --- KOTAK AYAT AL-QURAN DI BAWAH --- */
.quran-quote-card {
  width: 100%;
  max-width: 440px;
  background: rgba(232, 247, 240, 0.85); /* Hijau mint super soft transparan khas Sixtify */
  border: 1px solid rgba(4, 57, 39, 0.1);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 25px rgba(4, 57, 39, 0.04);
}

.quran-quote-card p {
  font-size: 13px;
  color: #043927;
  font-weight: 600;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .sixtify-login-card, .quran-quote-card {
    width: 92%;
  }
  .sixtify-login-card {
    padding: 30px 24px;
  }
}