:root {
  --brand-blue: #1f2d78;   /* biru tua seperti desain */
  --brand-yellow: #f4b000; /* warna tombol */
}

html, body {
  height: 100%;
  background: #0e1840;
}

.login-wrap {
  min-height: 100%;
  display: grid;
  grid-template-columns: 58% 42%;
}

/* Area kiri: gambar background dengan overlay gradasi */
.login-left {
  background: url('../images/login-bg.jpg') center/cover no-repeat;
  position: relative;
}

.login-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14,24,64,0.75) 0%,
    rgba(14,24,64,0.25) 50%,
    rgba(14,24,64,0) 100%
  );
}

/* Card login di kanan */
.login-right {
  background: radial-gradient(80% 80% at 20% 20%, #223178 0%, #121c4d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.login-card {
  width: 100%;
  max-width: 460px;
  background: #1b2a6b;
  color: #fff;
  border-radius: 16px;
  padding: 28px 26px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.login-card .brand {
  text-align: center;
  margin-bottom: 18px;
}

.login-card .brand img {
  height: 56px;
}

.login-card label {
  color: #cfd6ff;
}

.login-card .form-select {
  background-image: none !important;
}

.login-card .form-control:focus,
.login-card .form-select:focus {
  background: #ffffff;
  border: 2px solid var(--brand-yellow); /* atau brand-green */
  box-shadow: none;
}

.btn-login {
  background: var(--brand-yellow);
  border: none;
  color: #1b2a6b;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
}

.btn-login:hover {
  filter: brightness(.95);
}

.toggle-pass {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 55%;
  transform: translateY(-0%);
  color: #6b77b5;
}

@media (max-width: 992px) {
  .login-wrap {
    grid-template-columns: 1fr;
  }
  .login-left {
    display: none;
  }
  .login-right {
    padding: 20px;
  }
}
