.background-login {
  background: #416FD5;
  background: linear-gradient(157deg, rgba(65, 111, 213, 1) 0%, rgba(162, 214, 213, 1) 100%);
}


/* Container Login */
.login-box {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

/* Glassmorphism Card */
.card-login {
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(47, 128, 237, 0.2); 
  padding: 10px 15px;
}


.login-sub-title {
  font-weight: 400;
  color: grey;
  margin-bottom: 25px;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Input Fields Style */
.custom-input-group {
  background: #f8f9fa; /* Hampir putih */
  border-radius: 50px;
  padding: 2px 20px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  position: relative;
}

.custom-input-group:focus-within {
  background: #fff;
  border-color: #74a5d6;
  box-shadow: 0 4px 15px rgba(47, 128, 237, 0.2);
  transform: translateY(-2px);
}

.custom-input-group input {
  border: none;
  background: transparent;
  box-shadow: none !important;
  height: 48px;
  font-size: 15px;
  padding-left: 10px;
  width: 100%;
  outline: none;
  color: #333;
}

.custom-input-group .input-icon {
  color: #a0aec0;
  font-size: 18px;
  min-width: 24px;
  text-align: center;
  transition: color 0.3s;
}

.custom-input-group:focus-within .input-icon {
  color: #2F80ED;
}

/* Button Style - WARNA KONTRAS */
/* Tombol dibuat Biru Lebih Gelap agar menonjol di background muda */
.btn-login {
  background: linear-gradient(50deg, #6594d6 0%, #7fb1d4 80%);
  border: none;
  border-radius: 12px;
  height: 47px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(47, 128, 237, 0.4);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.btn-login:hover {
  background: linear-gradient(90deg, #0056b3 0%, #2F80ED 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(47, 128, 237, 0.5);
  color: #fff;
}

.btn-login:active {
  transform: scale(0.98);
}

.logo-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-top: -60px;
  background: #fff;
  padding: 3px;
  margin-bottom: 15px;
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 30px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

#showPassword {
  padding: 10px;
  cursor: pointer;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 576px) {
  .login-box { width: 100%; }
  .card-glass {
    padding: 40px 20px 25px 20px;
    margin-top: 30px;
  }
  .login-logo b { font-size: 2rem; }
  .logo-img {
    width: 80px;
    height: 80px;
    margin-top: -65px;
  }
  .custom-input-group input { font-size: 16px; }
}