/* ===== LOGIN MODERN – MATERIALIZE CBT ===== */

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #eaf6fb, #ffffff);
}

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(0,0,0,.08);
  padding: 40px;
  text-align: center;
}

.login-logo {
  max-width: 90px;
  margin-bottom: 10px;
}

.login-title {
  font-weight: 700;
  margin-bottom: 20px;
}

/* Alert */
.login-alert {
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}
.login-alert.info {
  background: #e3f2fd;
  color: #0d47a1;
}
.login-alert.error {
  background: #ef5350;
  color: #fff;
}

/* Input override */
.input-field input {
  border-radius: 10px !important;
  padding-left: 12px !important;
}

/* Button */
.btn-login {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1fa9d6, #0d7fa8);
  font-weight: 600;
  margin-top: 10px;
}

/* Footer */
.login-footer {
  margin-top: 20px;
  font-size: 13px;
}
/* ===================================================
   FORCE LOGIN CENTER – DISABLE LEFT PANEL
   =================================================== */

/* Sembunyikan panel kiri */
.col.m5.s12.hide-on-small-only {
    display: none !important;
}

/* Paksa kolom login full & center */
.col.m7.s12 {
    width: 100% !important;
    margin: 0 auto !important;
}

/* Pastikan wrapper login benar-benar di tengah */
.login-wrapper {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: linear-gradient(135deg, #eaf6fb, #ffffff);
}
.login-logo {
  max-width: 180px;   /* NAH INI YANG MEMBESARKAN */
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
/* ===============================
   POLISH AKSES LOGIN
   =============================== */

/* Hover effect tombol */
.btn-login {
  transition: all .25s ease;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,.18);
}

/* Icon di tombol */
.btn-login i {
  margin-right: 8px;
  vertical-align: middle;
}

/* Spacing antar tombol */
.login-card a.btn-login {
  margin-bottom: 14px;
}

/* Footer lebih soft */
.login-footer {
  margin-top: 25px;
  font-size: 12px;
  opacity: .8;
}

/* Responsive mobile */
@media (max-width: 600px) {
  .login-card {
    padding: 28px 22px;
  }

  .login-logo {
    max-width: 130px;
  }
}

.btn-login {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}

