/* ── PAGE LOGIN ─────────────────────────────────────────────── */
.m-login-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a2e1e 0%, #0d3d2a 60%, #1a6644 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.m-login-wrap { width: 100%; max-width: 400px; }
.m-login-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.m-login-logo { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 24px; }
.m-logo-icon-lg { width: 42px; height: 42px; background: var(--green-main); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px; color: #fff; }
.m-login-appname { font-size: 20px; font-weight: 700; color: var(--green-main); letter-spacing: -.02em; }
.m-login-title { font-size: 16px; font-weight: 600; text-align: center; margin-bottom: 6px; color: var(--text-main); }
.m-login-sub   { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 20px; }

.m-btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #fff; color: #333; border: 1px solid var(--border-strong);
  border-radius: var(--radius); height: 40px; font-size: 13px; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: background .15s;
}
.m-btn-google:hover { background: #f8f8f8; color: #333; }

.m-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.m-divider::before, .m-divider::after { content: ''; flex: 1; border-top: 1px solid var(--border); }
.m-divider span { font-size: 12px; color: var(--text-sub); }

.m-form-group { margin-bottom: 16px; }
.m-form-group label { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 500; color: var(--text-muted); margin-bottom: 5px; }
.m-input-icon { position: relative; }
.m-input-icon i:first-child { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--text-sub); font-size: 14px; pointer-events: none; }
.m-input-icon .m-input { padding-left: 34px; }
.m-input-icon .m-input.has-eye { padding-right: 36px; }
.m-input-eye { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-sub); cursor: pointer; padding: 4px; line-height: 1; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 4px; }
.m-input-eye:hover { color: var(--green-main); background: var(--green-light); }

.m-forgot-link { font-size: 12px; color: var(--green-main); text-decoration: none; }
.m-forgot-link:hover { text-decoration: underline; }

.m-form-check { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 13px; color: var(--text-muted); }
.m-form-check .form-check-input { width: 15px; height: 15px; border-color: var(--border-strong); cursor: pointer; }
.m-form-check .form-check-input:checked { background-color: var(--green-main); border-color: var(--green-main); }

.m-btn-primary.w-100 { width: 100%; height: 40px; font-size: 14px; margin-top: 4px; }

.m-login-back { text-align: center; margin-top: 16px; font-size: 13px; }
.m-login-back a { color: var(--green-main); text-decoration: none; }

.m-login-footer { text-align: center; font-size: 11px; color: rgba(255,255,255,.3); margin-top: 18px; }
