/* ===============================
   LOGIN PAGE
================================ */

body.login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00f5d4, #007f78);
  color: #fff;
}

/* WRAPPER */
.login-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

/* CARD */
.login-box {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
  color: #000;
  border-radius: 22px;
  padding: 36px 30px;
  text-align: center;
}

/* LOGO */
.login-logo {
  width: 250px;
  margin-bottom: 12px;
  margin-left:10px;
  filter: invert(0)
}

/* TITLE */
.login-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
}

/* FORM */
.login-form label {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.login-form input:hover {
  color: #007f78;
}

/* ===== INPUT BASE ===== */
.login-form input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  background: #ffffff;
  font-size: 15px;
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

/* ===== INPUT HOVER ===== */
.login-form input:hover {
  border-color: #00bfb3;
  background: #f9fffe;
}

/* ===== INPUT FOCUS (lebih tegas) ===== */
.login-form input:focus {
  outline: none;
  border-color: #007f78;
  box-shadow: 0 0 0 3px rgba(0, 127, 120, 0.15);
  background: #ffffff;
}

/* ===== OPTIONAL: INPUT DISABLED ===== */
.login-form input:disabled {
  background: #f1f1f1;
  color: #999;
  cursor: not-allowed;
}

/* REMEMBER */
.remember {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
  padding-left: 2px;
}

.remember-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
}

/* checkbox size */
.remember-wrap input {
  width: 16px;
  height: 16px;
  margin: 0;
}
.auth-switch {
  margin-top: 14px;
  margin-bottom: 18px;
  font-size: 18px;
  text-align: center;
}
.auth-switch a {
  color: #00c7ff;
  font-weight: 600;
  text-decoration: none;
}
.auth-switch a:hover {
  text-decoration: underline;
}
/* BUTTON */
.btn-login-submit {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;footer-note
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
}
.btn-login-submit:hover {
    filter: brightness(1.1);
}

/* ERROR */
.login-error {
  background: #ffecec;
  color: #b80000;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer-reg {
    font-size: 16px;
  margin-top: 30px;
  color: #fff;
}

/* FOOTER */
.footer-note {
  font-size: 18px;
  margin-top: 27px;
  margin-bottom: -10px;
  color: #000 !important;
}

.footer-note a {
  color: #00c7ff;
}
