body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #74cfae, #49b38c); /* Warna background disesuaikan agar lebih lembut */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  width: 100%;
  max-width: 360px; /* Dipersempit agar lebih manis di HP */
  padding: 16px;
  box-sizing: border-box;
}

.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px; /* Sudut sedikit dipertajam agar proporsional dengan ukuran kecil */
  padding: 32px 24px; /* Padding atas-bawah 32px, kiri-kanan 24px */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* =========================================
   BAGIAN HEADER (LEBIH COMPACT)
========================================= */
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px; /* Jarak diperkecil */
}

.logo-area img {
  width: 80px; /* Logo diperkecil */
  height: auto;
  margin-bottom: 12px;
  object-fit: contain;
}

.logo-area h1 {
  margin: 0 0 4px 0;
  font-size: 24px; /* Font judul diperkecil */
  font-weight: 700;
  color: #0b6848;
  line-height: 1.2;
}

.logo-area p {
  margin: 0;
  font-size: 12px; /* Font sub-judul diperkecil */
  color: #666;
}
/* ========================================= */

.input-group {
  position: relative;
  margin-bottom: 16px; /* Jarak antar input diperkecil */
}

.input-group input {
  width: 100%;
  padding: 14px 40px; /* Padding input dirampingkan */
  border: 1px solid transparent;
  border-radius: 12px; /* Border radius disesuaikan */
  background: #f4f5f7;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: #10b981;
  background: #ffffff;
}

.input-group i.fa-envelope,
.input-group i.fa-lock {
  position: absolute;
  left: 14px; /* Posisi icon digeser sedikit */
  top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-size: 14px; /* Icon diperkecil sedikit */
}

.togglePassword {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}

.remember {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 12px; /* Font diperkecil */
  color: #555;
}

.remember a {
  text-decoration: none;
  color: #10b981;
  font-weight: 600;
}

.btn-login {
  width: 100%;
  padding: 14px; /* Tombol dirampingkan */
  border: none;
  border-radius: 12px;
  background: #10b981;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-login:hover {
  transform: translateY(-2px);
  background: #059669;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.divider {
  text-align: center;
  margin: 20px 0; /* Jarak divider diperkecil */
  position: relative;
}

.divider span {
  background: #ffffff;
  padding: 0 10px;
  color: #aaa;
  font-size: 11px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  z-index: 0;
}

.google {
  width: 100%;
  padding: 12px; /* Tombol Google dirampingkan */
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #555;
  cursor: pointer;
  transition: 0.3s;
}

.google:hover {
  background: #f9fafb;
}

.google img {
  width: 18px;
}

.register {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #555;
}

.register a {
  text-decoration: none;
  color: #10b981;
  font-weight: bold;
}

/* Menambahkan fa-user ke dalam aturan CSS icon yang sudah ada */
.input-group i.fa-envelope,
.input-group i.fa-lock,
.input-group i.fa-user {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-size: 14px;
}