body { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; }

.login-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 24px;
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo .logo-icon {
  width: 64px; height: 64px;
  background: var(--primary);
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; color: white;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(37,99,235,.4);
}

.login-logo h1 { color: white; font-size: 22px; font-weight: 700; }
.login-logo p { color: #94a3b8; font-size: 13px; margin-top: 4px; }

.login-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.login-card h2 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.login-card .sub { color: var(--text-muted); font-size: 13px; margin-bottom: 24px; }

.input-icon-wrap { position: relative; }
.input-icon-wrap .icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 14px;
}
.input-icon-wrap .form-control { padding-left: 36px; }

.password-wrap { position: relative; }
.password-toggle {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 14px;
}

.login-btn {
  width: 100%;
  justify-content: center;
  padding: 11px;
  font-size: 15px;
  margin-top: 8px;
  border-radius: 8px;
}

.login-footer { text-align: center; margin-top: 20px; color: #94a3b8; font-size: 12px; }
