/* ===== Login Page ===== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #101828; }

.auth-page{
  background: #e9f6f3;
}

.auth{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-card{
  width: 100%;
  max-width: 460px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(82,63,105,.10);
}

.auth-brand{
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.auth-logo{
  height: 38px;
  width: auto;
  display: block;
}

.auth-title{
  text-align: center;
  font-size: 18px;
  margin: 10px 0 18px;
  font-weight: 700;
}

.auth-alert{
  background: rgba(255, 77, 79, 0.10);
  border: 1px solid rgba(255, 77, 79, 0.25);
  color: #b42318;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 13px;
}

.auth-form{ display: grid; gap: 10px; }

.auth-label{
  font-size: 13px;
  color: #667085;
  font-weight: 600;
  margin-top: 4px;
}

.auth-input{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.10);
  padding: 0 14px;
  outline: none;
  background: #fff;
}

.auth-input:focus{
  border-color: rgba(122,224,212,.8);
  box-shadow: 0 0 0 4px rgba(122,224,212,.25);
}

.auth-password{
  position: relative;
  display: flex;
  align-items: center;
}

.auth-eye{
  position: absolute;
  right: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  height: 34px;
  width: 38px;
  border-radius: 10px;
}

.auth-eye:hover{ background: rgba(15,23,42,.06); }

.auth-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.auth-check{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #667085;
}

.auth-link{
  font-size: 13px;
  color: #0ea5a5;
  text-decoration: none;
  font-weight: 600;
}

.auth-link:hover{ text-decoration: underline; }

.auth-btn{
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #7ae0d4;
  color: #0b3b34;
  font-weight: 800;
  cursor: pointer;
  margin-top: 6px;
}

.auth-btn:hover{ opacity: .95; }

.auth-foot{
  text-align: center;
  font-size: 13px;
  color: #667085;
  margin-top: 8px;
}

.auth-lockbox{
  margin: 0 0 14px 0;
  padding: 14px;
  border-radius: 12px;

  background: rgba(255, 77, 79, 0.08);
  border: 1px solid rgba(255, 77, 79, 0.25);

  color: #b42318;
  text-align: center;
}


.auth-lock-title{
  font-weight: 700;
  margin-bottom: 4px;
}

.auth-lock-desc{
  opacity: .85;
  font-size: 14px;
}

.auth-lock-timer{
  font-size: 30px;
  font-weight: 800;
  margin-top: 6px;
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
}


/* Optional: styling tombol saat disabled */
.auth-form .is-disabled{
  opacity: .7;
  cursor: not-allowed;
}

.auth-btn:disabled{
  opacity: .7;
  cursor: not-allowed;
}
