/* ===========================
   LOGIN (SOFT USER STYLE)
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --green: #2f6f3a; /* hijau user */
  --green-soft: #4f8f65; /* hijau lembut */
  --gold: #caa22b; /* emas user */
  --cream: #fbfaef; /* cream user */
  --soft: #f6f4df; /* bg soft */
  --white: #ffffff;
}

/* ===========================
   PAGE
=========================== */
.login-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--soft), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* wave halus */
.wave {
  position: absolute;
  left: -15%;
  right: -15%;
  height: 200px;
  border-radius: 999px;
  background: rgba(47, 111, 58, 0.08);
  transform: rotate(-3deg);
  pointer-events: none;
}
.wave-1 {
  top: 120px;
}
.wave-2 {
  top: 180px;
  opacity: 0.5;
  transform: rotate(-2deg);
}

/* ===========================
   WRAPPER
=========================== */
.login-wrap {
  width: 430px;
  max-width: calc(100% - 40px);
  text-align: center;
  padding: 28px 26px;
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(47, 111, 58, 0.25);
}

/* ===========================
   BRAND
=========================== */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.brand-logo {
  width: 95px;
  height: 95px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(47, 111, 58, 0.15));
}

.brand-name {
  color: var(--green);
  font-size: 12px;
  line-height: 1.2;
}
.brand-name b {
  font-weight: 800;
}

/* ===========================
   TITLE
=========================== */
.title {
  color: var(--green);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 6px;
}

.subtitle {
  color: #6b6b6b;
  font-size: 12px;
  margin-bottom: 18px;
}

/* ===========================
   FORM
=========================== */
.login-form {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.label {
  color: #4a4a4a;
  font-size: 11px;
  margin-top: 6px;
}

.input {
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(47, 111, 58, 0.25);
  outline: none;
  padding: 0 16px;
  background: var(--cream);
  color: #1a1a1a;
  font-size: 12px;
}

.input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(202, 162, 43, 0.2);
}

/* ===========================
   ROW
=========================== */
.row {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4a4a4a;
  font-size: 11px;
}
.remember input {
  accent-color: var(--green);
}

.link {
  color: var(--green);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
}
.link:hover {
  text-decoration: underline;
}

/* ===========================
   BUTTON
=========================== */
.btn-login {
  margin: 18px auto 0;
  width: 140px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 20px rgba(47, 111, 58, 0.35);
  transition: 0.25s ease;
}

.btn-login:hover {
  background: var(--gold);
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* ===========================
   BOTTOM
=========================== */
.bottom {
  margin-top: 16px;
  text-align: center;
  color: #4a4a4a;
  font-size: 11px;
}

.link-strong {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}
.link-strong:hover {
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 480px) {
  .login-wrap {
    width: 360px;
    padding: 24px 20px;
  }
  .title {
    font-size: 24px;
  }
}
