/* ==== GLOBAL RESET ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ==== BACKGROUND GRADIENT ==== */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0b3d2e, #0f5c3c, #1d7a4a);
  overflow: hidden;
  position: relative;
}

/* ==== LOGIN BOX ==== */
.login-box {
  width: 360px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 35px 28px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 5;
}

.login-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 24px;
}

/* ==== FORM ==== */
.input-group {
  display: flex !important;
  flex-direction: column !important;
  width: 100%;
  margin-bottom: 16px;
}

.input-group label {
  color: #e8e8e8;
  font-size: 13px;
  margin-bottom: 6px;
}

/* ==== INPUT ==== */
.input-group input {
  width: 100% !important;
  height: 45px;
  padding: 12px 14px !important;
  border-radius: 10px;
  border: none !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.8);
  color: #0b3d2e;
  font-size: 14px;
  transition: 0.2s ease;
}

.input-group input:focus {
  background: #ffffff;
}

/* ==== BUTTON ==== */
.btn-login {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  color: #0b3d2e;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 5px;
  transition: 0.25s;
}

.btn-login:hover {
  background: #eaeaea;
}

/* ==== EXTRA TEXT ==== */
.extra {
  text-align: center;
  margin-top: 14px;
  color: #e9e9e9;
  font-size: 13px;
}

/* === LOGO DI TENGAH === */
.logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.logo {
  height: 60px;
  display: block;
}

/* === CAPTCHA === */
.captcha-box {
  background: #ffffff22;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 430px) {
  .login-box {
    width: 90%;
    padding: 28px 22px;
  }
}
