/* === GLOBAL BODY === */
body {
  font-family: "Poppins", sans-serif;
  background:
    linear-gradient(rgba(10, 42, 67, 0.8), rgba(10, 42, 67, 0.8)),
    url('../../Assets/img/BG_Hero.png') no-repeat center center/cover;
  color: #212529;
  font-size: 15px;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  z-index: -1;
}

/* === CARD LOGIN === */
.card {
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  color: #212529;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
  max-width: 380px; /* ✅ lebih kecil */
  margin: 0 auto;
  width: 100%;
  animation: fadeSlideDown 1s ease forwards;
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0a2a43;
}

.form-label {
  color: #495057;
  font-size: 15px;
}

.form-control {
  background-color: #ffffff;
  border: 1px solid #ced4da;
  color: #212529;
  font-size: 15px;
  padding: 10px;
  border-radius: 6px;
}

.form-control:focus {
  border-color: #80bdff;
  background-color: #ffffff;
  color: #212529;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.btn-primary {
  background-color: #007bff;
  border: none;
  font-weight: 600;
  padding: 10px 16px;
  font-size: 15px;
  border-radius: 6px;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn:focus {
  box-shadow: none;
}

.text-center a {
  color: #007bff;
}

.text-center a:hover {
  text-decoration: underline;
}

img[alt="Logo PT"] {
  max-width: 150px;
  display: block;
  margin: 0 auto 20px;
}

/* === RESPONSIVE KHUSUS UNTUK 480px === */
@media (max-width: 480px) {
  body {
    font-size: 13px;
    padding: 10px;
  }

  .container {
    padding: 0 5px;
  }

  .card {
    padding: 18px !important;
    border-radius: 8px;
    width: 100%;
    max-width: 360px;      /* ✅ lebih kecil */
    max-height: 480px;     /* ✅ batasi tinggi */
    margin: 0 auto;
    overflow-y: auto;      /* jika konten terlalu tinggi, scroll */
  }

  .card h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .form-label {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .form-control {
    font-size: 13px;
    padding: 8px;
  }

  .btn-primary {
    font-size: 13px;
    padding: 8px 12px;
  }

  .text-center span,
  .text-center a {
    font-size: 13px;
  }

  .alert {
    font-size: 13px;
    padding: 8px;
  }

  .btn-close {
    transform: scale(0.8);
  }

  .cf-turnstile {
    transform: scale(0.85);
    transform-origin: top center;
    margin-bottom: 10px;
  }

  img[alt="Logo PT"] {
    max-width: 100px;
    margin-bottom: 15px;
  }
}
